﻿/* === CSS Variables === */
:root {
    --primary: #000613;
    --primary-container: #001f3f;
    --primary-fixed: #d4e3ff;
    --primary-fixed-dim: #afc8f0;
    --secondary: #964900;
    --secondary-container: #a0c833;
    --on-primary: #ffffff;
    --on-secondary: #ffffff;
    --on-secondary-container: #612d00;
    --on-surface: #191c1e;
    --on-surface-variant: #43474e;
    --on-background: #191c1e;
    --on-primary-container: #6f88ad;
    --surface: #f7f9fb;
    --surface-container: #eceef0;
    --surface-container-low: #f2f4f6;
    --surface-container-lowest: #ffffff;
    --surface-dim: #d8dadc;
    --surface-variant: #e0e3e5;
    --outline: #74777f;
    --outline-variant: #c4c6cf;
    --velocity-blue: #1156B4;
    --cargo-green: #8CC63F;
    --alert-red: #F21A21;
    --glass-surface: rgba(255, 255, 255, 0.7);
}

/* === Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--surface);
    color: var(--on-background);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* === Mobile Overlay === */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1029;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* === SVG Icons === */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

.icon-md {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

.icon-velocity {
    width: 28px;
    height: 28px;
    color: var(--velocity-blue);
}

.icon-white {
    width: 28px;
    height: 28px;
    color: #fff;
}

.icon-muted {
    width: 24px;
    height: 24px;
    color: var(--outline);
}

.icon-social {
    width: 20px;
    height: 20px;
    color: #fff;
}

.icon-footer-contact {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(111, 136, 173, 0.8);
}

/* === Container === */
.container-custom {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* === Glass Card === */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* === Top Bar === */
.top-bar {
    width: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #001029 100%);
    padding: 7px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1031;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

a.top-bar-item:hover {
    color: var(--secondary-container);
}

.top-bar-icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

a.top-bar-item:hover .top-bar-icon-circle {
    background: rgba(255, 133, 27, 0.15);
    color: var(--secondary-container);
}

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

/* === Navbar === */
.navbar-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.03);
    z-index: 1030;
    padding: 0;
    top: 38px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar-mobile-right {
    gap: 6px;
}

.btn-track-nav-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-track-nav-mobile:hover {
    background: #001040;
    color: #fff;
}

.navbar-custom.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
}

.navbar-brand-link {
    flex-shrink: 0;
}

.navbar-logo {
    height: 80px;
    width: 200px;
    display: block;
}

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Links */
.navbar-nav {
    gap: 0;
}

.nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--on-surface-variant);
    text-decoration: none;
    padding: 10px 18px;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2.5px;
    background: var(--secondary-container);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-custom:hover {
    color: var(--primary);
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
}

.nav-link-custom.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-link-custom.active::after {
    transform: scaleX(1);
    background: var(--secondary);
}

/* Dropdown - Creative UI */
.dropdown {
    position: relative;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    animation: dropIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(160, 200, 51, 0.08);
    padding: 10px;
    min-width: 230px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.navbar-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-container), var(--velocity-blue), var(--cargo-green));
    background-size: 200% 100%;
    animation: dropdownShimmer 3s ease infinite;
}

@keyframes dropdownShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.navbar-nav .dropdown-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--on-surface-variant);
    padding: 11px 18px;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .dropdown-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-container);
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
}

.navbar-nav .dropdown-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(160, 200, 51, 0.08), rgba(17, 86, 180, 0.04));
    color: var(--primary);
    padding-left: 22px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding: 0 0 0 16px;
        border: none;
        animation: none;
    }

    .navbar-nav .dropdown-menu::before {
        display: none;
    }

    .navbar-nav .dropdown-item {
        padding: 10px 12px;
        font-size: 14px;
        color: var(--on-surface-variant);
    }

    .navbar-nav .dropdown-item::before {
        display: none;
    }

    .navbar-nav .dropdown-item:hover {
        background: rgba(0, 0, 0, 0.03);
        padding-left: 12px;
    }

    .dropdown:hover .dropdown-toggle::after {
        transform: none;
    }
}

/* Navbar Buttons */
.navbar-actions {
    gap: 8px !important;
}

.btn-track-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-track-nav:hover {
    background: #001040;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 6, 19, 0.25);
}

.btn-login-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--on-surface);
    font-weight: 600;
    font-size: 13px;
    border: 1.5px solid var(--outline-variant);
    border-radius: 50px;
    padding: 8px 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, background 0.3s ease;
}

.btn-login-nav:hover {
    border-color: var(--velocity-blue);
    color: var(--velocity-blue);
    background: rgba(17, 86, 180, 0.04);
    transform: translateY(-1px);
}

.btn-quote-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--secondary-container) 0%, #e67a10 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 133, 27, 0.25);
}

.btn-quote-nav:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 27, 0.35);
}

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #0a0e1a 0%, #001029 50%, #0a0e1a 100%);
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Left: Carousel */
.hero-carousel-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 6, 19, 0.88) 0%, rgba(0, 6, 19, 0.5) 50%, rgba(0, 6, 19, 0.3) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.hero-slide-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--secondary-container);
    color: var(--on-secondary-container);
    margin-bottom: 20px;
    width: fit-content;
}

.hero-slide-badge-blue {
    background: var(--velocity-blue);
    color: #fff;
}

.hero-slide-badge-green {
    background: var(--cargo-green);
    color: var(--primary);
}

.hero-slide-badge-orange {
    background: var(--secondary);
    color: #fff;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.hero-title .text-accent {
    color: var(--secondary-container);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 480px;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--secondary-container);
    border-color: var(--secondary-container);
    width: 28px;
    border-radius: 5px;
}

.hero-dot:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.8);
}

/* Right: Tracking Panel */
.hero-tracking-panel {
    width: 380px;
    flex-shrink: 0;
}

.hero-tracking-card {
    background: #fff;
    border-radius: 20px;
    padding: 0 32px 28px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-tracking-accent {
    height: 4px;
    margin: 0 -32px 28px;
    background: linear-gradient(90deg, var(--secondary-container), var(--velocity-blue), var(--secondary-container));
    background-size: 200% 100%;
    animation: accent-shimmer 3s ease infinite;
}

@keyframes accent-shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-tracking-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-tracking-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary-container), #8ab52a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-secondary-container);
    flex-shrink: 0;
    position: relative;
}

.hero-tracking-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid var(--secondary-container);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

.hero-tracking-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.hero-tracking-subtitle {
    font-size: 13px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

/* Service Tabs */
.hero-tracking-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    background: var(--surface);
    border-radius: 10px;
    padding: 4px;
}

.hero-tracking-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 6px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.hero-tracking-tab svg {
    flex-shrink: 0;
}

.hero-tracking-tab:hover {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.03);
}

.hero-tracking-tab.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Input */
.hero-tracking-input-group {
    position: relative;
    margin-bottom: 12px;
}

.hero-tracking-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--outline);
    pointer-events: none;
    transition: color 0.3s ease;
}

.hero-tracking-input {
    width: 100%;
    padding: 15px 40px 15px 42px;
    border: 1.5px solid var(--outline-variant);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', monospace;
    letter-spacing: 0.03em;
    color: var(--primary);
    background: var(--surface);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-tracking-input::placeholder {
    color: rgba(116, 119, 127, 0.45);
    font-weight: 400;
    letter-spacing: 0;
}

.hero-tracking-input:focus {
    border-color: var(--secondary-container);
    box-shadow: 0 0 0 4px rgba(160, 200, 51, 0.12);
    background: #fff;
}

.hero-tracking-input:focus~.hero-tracking-search-icon {
    color: var(--secondary-container);
}

.hero-tracking-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--outline);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-tracking-input:not(:placeholder-shown)~.hero-tracking-clear {
    opacity: 1;
}

.hero-tracking-clear:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--on-surface);
}

/* Button */
.hero-btn-track {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #001040 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.hero-btn-track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-container), #8ab52a);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-btn-track:hover::before {
    opacity: 1;
}

.hero-btn-track:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 200, 51, 0.35);
    color: var(--on-secondary-container);
}

.hero-btn-track-text,
.hero-btn-track-icon {
    position: relative;
    z-index: 1;
}

.hero-btn-track-icon {
    display: flex;
    transition: transform 0.25s ease;
}

.hero-btn-track:hover .hero-btn-track-icon {
    transform: translateX(3px);
}

/* Quick Suggestions */
.hero-tracking-suggestions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.hero-tracking-suggestions-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--outline);
    letter-spacing: 0.02em;
}

.hero-tracking-suggestion {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid var(--outline-variant);
    border-radius: 6px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', monospace;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-tracking-suggestion:hover {
    border-color: var(--secondary-container);
    color: var(--on-secondary-container);
    background: rgba(160, 200, 51, 0.08);
}

/* Divider */
.hero-tracking-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--outline-variant), transparent);
    margin: 20px 0;
}

/* Trust Badges */
.hero-tracking-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-tracking-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--on-surface-variant);
}

.hero-tracking-trust-item svg {
    color: var(--cargo-green);
    flex-shrink: 0;
}

/* === Stats Section === */
.stats-section {
    background-color: var(--primary);
    color: #fff;
    padding: 48px 0;
    position: relative;
    z-index: 30;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-container);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 4px;
}

/* === About Section === */
.about-section {
    padding: 50px 0;
    background: var(--surface-container-lowest);
    overflow: hidden;
}

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

/* Visual side */
.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 460px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border-radius: 20px;
    border: 3px solid var(--secondary-container);
    z-index: 1;
    opacity: 0.4;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--secondary-container), #8ab52a);
    color: var(--on-secondary-container);
    padding: 22px 26px;
    border-radius: 16px;
    z-index: 3;
    box-shadow: 0 12px 30px rgba(160, 200, 51, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-exp-number {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-exp-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.85;
}

/* Content side */
.about-content {
    padding: 10px 0;
}

.about-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--velocity-blue);
    margin-bottom: 16px;
}

.about-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-title .text-accent {
    color: var(--secondary-container);
}

.about-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin-bottom: 16px;
}

.about-desc:last-of-type {
    margin-bottom: 28px;
}

/* Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 32px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--surface);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.about-highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(140, 198, 63, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cargo-green);
}

.about-highlight-icon-blue {
    background: rgba(17, 86, 180, 0.1);
    color: var(--velocity-blue);
}

.about-highlight-icon-orange {
    background: rgba(150, 73, 0, 0.1);
    color: var(--secondary);
}

.about-highlight-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 1px;
}

.about-highlight-desc {
    font-size: 12.5px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

/* CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.about-cta:hover {
    background: #001040;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 6, 19, 0.3);
}

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

.about-cta:hover svg {
    transform: translateX(4px);
}

/* === Vision / Mission / Strategy === */
.vm-section {
    padding: 0 0 100px;
    background: var(--surface-container-lowest);
}

.vm-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(196, 198, 207, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.vm-card-featured {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(0, 6, 19, 0.2);
}

.vm-card-featured:hover {
    box-shadow: 0 16px 50px rgba(0, 6, 19, 0.3);
}

.vm-card-featured .vm-title {
    color: #fff;
}

.vm-card-featured .vm-desc {
    color: rgba(255, 255, 255, 0.8);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vm-icon-vision {
    background: rgba(17, 86, 180, 0.1);
    color: var(--velocity-blue);
}

.vm-icon-mission {
    background: rgba(160, 200, 51, 0.15);
    color: var(--secondary-container);
}

.vm-card-featured .vm-icon-mission {
    background: rgba(160, 200, 51, 0.2);
    color: var(--secondary-container);
}

.vm-icon-strategy {
    background: rgba(150, 73, 0, 0.1);
    color: var(--secondary);
}

.vm-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.vm-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

/* === Section Defaults === */
.section-padding {
    padding: 80px 0;
}

.bg-surface-custom {
    background-color: var(--surface);
}

.bg-white-custom {
    background-color: var(--surface-container-lowest);
}

.bg-testimonial {
    background-color: var(--surface-container);
}

.text-primary-custom {
    color: var(--primary) !important;
}

.text-muted-custom {
    color: var(--on-surface-variant);
}

.text-velocity {
    color: var(--velocity-blue);
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--velocity-blue);
}

.section-divider {
    width: 80px;
    height: 6px;
    background-color: var(--secondary-container);
    border-radius: 9999px;
    margin: 16px auto 0;
}

/* === Icon Row - Why Choose Us === */
.iconrow-section {
    padding: 40px 0 40px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.iconrow-curve {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: #fff;
    line-height: 0;
}

.iconrow-curve svg {
    width: 100%;
    height: 80px;
}

.iconrow-header {
    text-align: center;
    margin-bottom: 48px;
}

.iconrow-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.iconrow-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.iconrow-title .text-accent {
    color: var(--cargo-green);
}

.iconrow-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.iconrow-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 28px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.iconrow-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.iconrow-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.iconrow-item:hover .iconrow-circle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.iconrow-label {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.iconrow-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin-bottom: 0;
}

/* === Services Accordion === */
.services-accordion {
    display: flex;
    gap: 16px;
    height: 520px;
}

.svc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 80px;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card.svc-active {
    flex: 4;
}

.svc-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.svc-card.svc-active .svc-card-bg {
    transform: scale(1.05);
}

.svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 6, 19, 0.85) 0%, rgba(0, 6, 19, 0.2) 50%, transparent 100%);
    transition: opacity 0.4s ease;
}

.svc-card:not(.svc-active) .svc-overlay {
    background: linear-gradient(to top, rgba(0, 6, 19, 0.7) 0%, transparent 60%);
}

.svc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: #fff;
    z-index: 2;
}

.svc-card:not(.svc-active) .svc-content {
    padding: 24px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
}

.svc-card.svc-active .svc-content {
    writing-mode: horizontal-tb;
}

.svc-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--cargo-green);
    color: var(--primary);
    margin-bottom: 14px;
}

.svc-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    white-space: nowrap;
    transition: font-size 0.4s ease;
}

.svc-card.svc-active .svc-title {
    font-size: 26px;
}

.svc-card:not(.svc-active) .svc-title {
    font-size: 16px;
}

.svc-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
}

.svc-card.svc-active .svc-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 4px;
    margin-bottom: 16px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.svc-card.svc-active .svc-link {
    opacity: 1;
    transform: translateY(0);
}

.svc-link:hover {
    color: var(--cargo-green);
}

.explore-link {
    color: var(--velocity-blue);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.explore-link:hover {
    color: var(--velocity-blue);
}

.explore-link .explore-arrow {
    transition: transform 0.2s ease;
}

.explore-link:hover .explore-arrow {
    transform: translateX(4px);
}

/* === Process Section === */
.process-section {
    background-color: var(--primary);
    color: #fff;
    padding: 50px 0 80px;
}

.process-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.process-subtitle {
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin: 16px auto 0;
}

.process-title .text-accent {
    color: var(--cargo-green);
}

/* Wrapper */
.process-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

/* Icons row - above the line */
.process-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.process-icon-item {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(241, 241, 241, 0.836);
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

/* Individual icon glow synced to fill */
.process-icon-item:nth-child(1) .process-icon {
    animation: iconA 5s linear infinite;
}

.process-icon-item:nth-child(2) .process-icon {
    animation: iconB 5s linear infinite;
}

.process-icon-item:nth-child(3) .process-icon {
    animation: iconC 5s linear infinite;
}

.process-icon-item:nth-child(4) .process-icon {
    animation: iconD 5s linear infinite;
}

@keyframes iconA {

    0%,
    15% {
        background: var(--cargo-green);
        color: #fff;
        border-color: var(--cargo-green);
        box-shadow: 0 0 20px rgba(160, 200, 51, 0.4)
    }

    25%,
    100% {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none
    }
}

@keyframes iconB {

    0%,
    25% {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none
    }

    30%,
    50% {
        background: var(--cargo-green);
        color: #fff;
        border-color: var(--cargo-green);
        box-shadow: 0 0 20px rgba(160, 200, 51, 0.4)
    }

    60%,
    100% {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none
    }
}

@keyframes iconC {

    0%,
    50% {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none
    }

    55%,
    75% {
        background: var(--cargo-green);
        color: #fff;
        border-color: var(--cargo-green);
        box-shadow: 0 0 20px rgba(160, 200, 51, 0.4)
    }

    85%,
    100% {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none
    }
}

@keyframes iconD {

    0%,
    75% {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none
    }

    80%,
    100% {
        background: var(--cargo-green);
        color: #fff;
        border-color: var(--cargo-green);
        box-shadow: 0 0 20px rgba(160, 200, 51, 0.4)
    }
}

/* Line */
.process-line {
    position: relative;
    height: 4px;
    margin: -2px 26px 0;
}

.process-line-bg {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.1) 0,
            rgba(255, 255, 255, 0.1) 8px,
            transparent 8px,
            transparent 16px);
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 4px;
    background: repeating-linear-gradient(to right,
            var(--cargo-green) 0,
            var(--cargo-green) 8px,
            transparent 8px,
            transparent 16px);
    animation: lineFill 5s linear infinite;
}

@keyframes lineFill {
    0% {
        width: 0%;
    }

    90% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

.process-line-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-radius: 50%;
    background: var(--cargo-green);
    box-shadow: 0 0 12px rgba(160, 200, 51, 0.6);
    animation: dotMove 5s linear infinite;
}

@keyframes dotMove {
    0% {
        left: 0;
        opacity: 0;
    }

    2% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    92% {
        left: 100%;
        opacity: 0;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Labels row - below the line */
.process-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
}

.process-label-item {
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.process-label-num {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.877);
    margin-bottom: 6px;
    transition: color 0.5s ease;
}

.process-label-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    transition: color 0.5s ease;
}

.process-label-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    margin: 0;
    transition: color 0.5s ease;
}

/* Text glow synced to fill */
.process-label-item:nth-child(1) .process-label-num,
.process-label-item:nth-child(1) .process-label-title,
.process-label-item:nth-child(1) .process-label-desc {
    animation: textA 5s linear infinite;
}

.process-label-item:nth-child(2) .process-label-num,
.process-label-item:nth-child(2) .process-label-title,
.process-label-item:nth-child(2) .process-label-desc {
    animation: textB 5s linear infinite;
}

.process-label-item:nth-child(3) .process-label-num,
.process-label-item:nth-child(3) .process-label-title,
.process-label-item:nth-child(3) .process-label-desc {
    animation: textC 5s linear infinite;
}

.process-label-item:nth-child(4) .process-label-num,
.process-label-item:nth-child(4) .process-label-title,
.process-label-item:nth-child(4) .process-label-desc {
    animation: textD 5s linear infinite;
}

@keyframes textA {

    0%,
    15% {
        color: #fff
    }

    25%,
    100% {
        color: rgba(255, 255, 255, 0.4)
    }
}

@keyframes textB {

    0%,
    25% {
        color: rgba(255, 255, 255, 0.4)
    }

    30%,
    50% {
        color: #fff
    }

    60%,
    100% {
        color: rgba(255, 255, 255, 0.4)
    }
}

@keyframes textC {

    0%,
    50% {
        color: rgba(255, 255, 255, 0.4)
    }

    55%,
    75% {
        color: #fff
    }

    85%,
    100% {
        color: rgba(255, 255, 255, 0.4)
    }
}

@keyframes textD {

    0%,
    75% {
        color: rgba(255, 255, 255, 0.4)
    }

    80%,
    100% {
        color: #fff
    }
}

/* === Coverage Section === */
.coverage-section {
    padding: 80px 0;
    background: var(--surface);
    overflow: hidden;
}

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

.coverage-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--velocity-blue);
    margin-bottom: 12px;
}

.coverage-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.coverage-title .text-accent {
    color: var(--cargo-green);
}

.coverage-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin-bottom: 32px;
}

.coverage-regions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.coverage-region {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(196, 198, 207, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.coverage-region:hover {
    border-color: rgba(160, 200, 51, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coverage-region-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(140, 198, 63, 0.1);
    color: var(--velocity-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-region-name {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.3;
}

.coverage-region-sub {
    font-size: 12px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

/* Map */
.coverage-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 1;
}

.map-glow {
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.12) 0%, transparent 70%);
    animation: mapPulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* === Testimonials === */
.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-style: italic;
    color: var(--on-surface-variant);
    position: relative;
    height: 100%;
}

.quote-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    color: rgba(116, 119, 127, 0.2);
}

.testimonial-text {
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #eee;
    padding-top: 16px;
    font-style: normal;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--surface-dim);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
}

.author-role {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--outline);
}

/* === Footer === */
.footer-section {
    width: 100%;
    background-color: var(--primary-container);
    padding: 48px 0 20px;
    border-top: 1px solid rgba(175, 200, 240, 0.1);
}

.footer-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--on-primary);
    margin-bottom: 24px;
}

.footer-logo {
    height: 105px;
    border-radius: 10px;
    background-color: var(--primary-fixed);
    width: auto;
    display: block;
}

.footer-about {
    color: rgba(255, 255, 255, 0.747);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-social:hover {
    background-color: var(--secondary-container);
    color: var(--primary);
}

.footer-heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.747);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--cargo-green);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.747);
    font-size: 14px;
}

.footer-contact-item .icon-footer-contact {
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.747);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #a1c42e;
}

.footer-bottom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 32px;
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.747);
}

/* === Service Pages === */
.page-banner {
    padding-top: 150px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #0a0e1a 0%, #001029 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 200, 51, 0.08), transparent 70%);
    pointer-events: none;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 86, 180, 0.06), transparent 70%);
    pointer-events: none;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-banner-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--secondary-container);
    color: var(--on-secondary-container);
    margin-bottom: 20px;
}

.page-banner-title {
    font-family: 'Manrope', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.page-banner-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
}

.service-detail-section {
    padding: 80px 0;
    background: var(--surface-container-lowest);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-text {
    padding: 0;
}

.service-detail-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin-bottom: 16px;
}

.service-detail-desc:last-of-type {
    margin-bottom: 28px;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: 12px;
    border-left: 3px solid var(--secondary-container);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-highlight-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(160, 200, 51, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cargo-green);
}

.service-highlight-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 1px;
}

.service-highlight-desc {
    font-size: 12.5px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

.service-detail-visual {
    position: relative;
}

.service-detail-image {
    width: 100%;
    height: 460px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid var(--secondary-container);
    opacity: 0.2;
    pointer-events: none;
}

.service-benefits-section {
    padding: 80px 0;
    background: var(--surface);
}

.service-benefits-section .row {
    gap: 20px;
}

.benefit-card {
    background: var(--surface-container-lowest);
    padding: 32px 28px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(196, 198, 207, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border-color: rgba(160, 200, 51, 0.2);
}

.benefit-number {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: rgba(160, 200, 51, 0.15);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-number {
    color: rgba(160, 200, 51, 0.35);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.benefit-icon-green {
    background: rgba(140, 198, 63, 0.12);
    color: var(--cargo-green);
}

.benefit-icon-blue {
    background: rgba(17, 86, 180, 0.1);
    color: var(--velocity-blue);
}

.benefit-icon-orange {
    background: rgba(150, 73, 0, 0.1);
    color: var(--secondary);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08);
}

.benefit-card:hover .benefit-icon-green {
    background: var(--cargo-green);
    color: #fff;
}

.benefit-card:hover .benefit-icon-blue {
    background: var(--velocity-blue);
    color: #fff;
}

.benefit-card:hover .benefit-icon-orange {
    background: var(--secondary);
    color: #fff;
}

.benefit-title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--on-surface-variant);
    margin-bottom: 0;
    flex: 1;
}

.service-cta-section {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 200, 51, 0.06), transparent 70%);
    pointer-events: none;
}

.service-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.service-cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 32px;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--secondary-container);
    color: var(--on-secondary-container);
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 200, 51, 0.35);
    color: var(--on-secondary-container);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 31px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
}

/* === Floating Tracking Bar === */
.tracking-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: 20px;
    pointer-events: none;
}

.tracking-bar-section .container-custom {
    pointer-events: auto;
}

.tracking-bar-card {
    max-width: 1140px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 28px 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.tracking-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.tracking-bar-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(17, 86, 180, 0.1), rgba(17, 86, 180, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--velocity-blue);
    flex-shrink: 0;
}

.tracking-bar-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
    line-height: 1.2;
}

.tracking-bar-desc {
    font-size: 13px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
    line-height: 1.4;
}

.tracking-bar-right {
    flex: 1;
    min-width: 0;
}

.tracking-bar-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracking-bar-input-group {
    position: relative;
    flex: 1;
    min-width: 0;
}

.tracking-bar-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--on-surface-variant);
    pointer-events: none;
}

.tracking-bar-input {
    width: 100%;
    padding: 14px 18px 14px 42px;
    border: 1.5px solid rgba(196, 198, 207, 0.3);
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--surface-container-lowest);
    color: var(--on-surface);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tracking-bar-input::placeholder {
    color: var(--on-surface-variant);
    opacity: 0.7;
}

.tracking-bar-input:focus {
    border-color: var(--velocity-blue);
    box-shadow: 0 0 0 3px rgba(17, 86, 180, 0.1);
}

.tracking-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--velocity-blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tracking-bar-btn:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 86, 180, 0.35);
}

.tracking-bar-btn:active {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-image {
        height: 340px;
    }

    .page-banner-title {
        font-size: 34px;
    }

    .service-cta-title {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding-top: 120px;
        padding-bottom: 48px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .page-banner-desc {
        font-size: 14px;
    }

    .service-detail-section,
    .service-benefits-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* === Service Detail Wrap (Main + Sidebar) === */
.service-detail-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-main {
    flex: 1;
    min-width: 0;
}

.service-detail-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* === Service Tracking Card === */
.service-tracking-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(196, 198, 207, 0.2);
}

.service-tracking-accent {
    height: 4px;
    margin: -28px -24px 24px;
    background: linear-gradient(90deg, var(--cargo-green), var(--primary));
    border-radius: 16px 16px 0 0;
}

.service-tracking-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-tracking-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(160, 200, 51, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cargo-green);
    flex-shrink: 0;
    position: relative;
}

.service-tracking-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.service-tracking-subtitle {
    font-size: 12.5px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

.service-tracking-input-group {
    position: relative;
    margin-bottom: 14px;
}

.service-tracking-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--on-surface-variant);
    pointer-events: none;
}

.service-tracking-input {
    width: 100%;
    padding: 12px 36px 12px 40px;
    border: 1px solid rgba(196, 198, 207, 0.3);
    border-radius: 10px;
    font-size: 14px;
    background: var(--surface-container-lowest);
    color: var(--on-surface);
    outline: none;
    transition: border-color 0.2s;
}

.service-tracking-input:focus {
    border-color: var(--cargo-green);
}

.service-btn-track {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, #001040 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.service-btn-track:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 200, 51, 0.35);
    background: linear-gradient(135deg, var(--secondary-container), #8ab52a);
    color: var(--on-secondary-container);
}

.service-tracking-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 2px solid var(--cargo-green);
    animation: pulse-ring 2s ease-out infinite;
}

.service-tracking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-tracking-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--outline);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-tracking-input:not(:placeholder-shown)~.service-tracking-clear {
    opacity: 1;
}

.service-tracking-clear:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--on-surface);
}

.service-tracking-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--outline-variant), transparent);
    margin: 16px 0;
}

.service-tracking-trust {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.service-tracking-trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--on-surface-variant);
}

.service-tracking-trust-item svg {
    color: var(--cargo-green);
    flex-shrink: 0;
}

/* === Service Nav Card === */
.service-nav-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(196, 198, 207, 0.2);
}

.service-nav-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(196, 198, 207, 0.15);
}

.service-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--on-surface-variant);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.service-nav-item:hover {
    background: rgba(17, 86, 180, 0.06);
    color: var(--primary);
}

.service-nav-item.active {
    background: rgba(160, 200, 51, 0.1);
    color: var(--cargo-green);
    font-weight: 600;
}

.service-nav-item svg {
    flex-shrink: 0;
}

/* === Scroll Reveal === */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

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

/* === Responsive styles have been moved to responsive.css === */

/* ================================================================
   SERVICE DETAIL PAGE TEMPLATE — Premium Redesign
   ================================================================ */

/* --- Color tokens for new template --- */
:root {
    --svc-navy: #0a0e1a;
    --svc-navy-light: #111827;
    --svc-blue: #1156B4;
    --svc-blue-light: #1a6dd4;
    --svc-orange: #f97316;
    --svc-orange-dark: #ea580c;
    --svc-green: #8CC63F;
    --svc-surface: #f8fafc;
    --svc-card: #ffffff;
    --svc-border: rgba(196, 198, 207, 0.12);
    --svc-text: #1e293b;
    --svc-text-muted: #64748b;
    --svc-radius: 20px;
    --svc-radius-sm: 14px;
    --svc-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --svc-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --svc-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ================================================================
   1. HERO BANNER — Enhanced with breadcrumbs
   ================================================================ */
.svc-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.svc-hero:hover .svc-hero-bg {
    transform: scale(1.03);
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(0, 16, 41, 0.85) 50%, rgba(10, 14, 26, 0.88) 100%);
}

.svc-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--svc-surface), transparent);
}

.svc-hero .container-custom {
    position: relative;
    z-index: 2;
}

.svc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    flex-wrap: wrap;
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.svc-breadcrumb a:hover {
    color: var(--svc-green);
}

.svc-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

.svc-breadcrumb-current {
    color: #fff;
    font-weight: 600;
}

.svc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(249, 115, 22, 0.15);
    color: var(--svc-orange);
    border: 1px solid rgba(249, 115, 22, 0.25);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.svc-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
}

.svc-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin-bottom: 0;
}

/* ================================================================
   2. FLOATING TRACKING BAR — Glassmorphism
   ================================================================ */
.tracking-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -55px;
    margin-bottom: 0;
    pointer-events: none;
}

.tracking-bar-section .container-custom {
    pointer-events: auto;
}

.tracking-bar-card {
    max-width: 1140px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--svc-radius);
    padding: 28px 36px;
    box-shadow: var(--svc-shadow-xl), 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.tracking-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.tracking-bar-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(17, 86, 180, 0.12), rgba(17, 86, 180, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--svc-blue);
    flex-shrink: 0;
}

.tracking-bar-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 2px;
    line-height: 1.2;
}

.tracking-bar-desc {
    font-size: 13px;
    color: var(--svc-text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.tracking-bar-right {
    flex: 1;
    min-width: 0;
}

.tracking-bar-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracking-bar-input-group {
    position: relative;
    flex: 1;
    min-width: 0;
}

.tracking-bar-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--svc-text-muted);
    pointer-events: none;
}

.tracking-bar-input {
    width: 100%;
    padding: 14px 18px 14px 42px;
    border: 1.5px solid var(--svc-border);
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--svc-card);
    color: var(--svc-text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tracking-bar-input::placeholder {
    color: var(--svc-text-muted);
    opacity: 0.7;
}

.tracking-bar-input:focus {
    border-color: var(--svc-blue);
    box-shadow: 0 0 0 3px rgba(17, 86, 180, 0.1);
}

.tracking-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--svc-blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tracking-bar-btn:hover {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 86, 180, 0.35);
}

/* ================================================================
   3. SERVICE OVERVIEW — Two-column with floating badges
   ================================================================ */
.svc-overview {
    padding: 80px 0;
    background: var(--svc-surface);
}

.svc-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.svc-overview-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 12px;
}

.svc-overview-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--svc-text);
    margin-bottom: 20px;
}

.svc-overview-desc {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--svc-text-muted);
    margin-bottom: 28px;
}

.svc-overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.svc-overview-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--svc-text);
    line-height: 1.5;
}

.svc-overview-list-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(140, 198, 63, 0.12);
    color: var(--svc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-overview-visual {
    position: relative;
}

.svc-overview-img {
    width: 100%;
    height: 440px;
    border-radius: var(--svc-radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--svc-shadow-xl);
    position: relative;
}

.svc-overview-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--svc-radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.svc-overview-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--svc-card);
    border-radius: var(--svc-radius-sm);
    padding: 20px 24px;
    box-shadow: var(--svc-shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--svc-border);
}

.svc-overview-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--svc-blue), var(--svc-blue-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-overview-badge-num {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--svc-text);
    line-height: 1;
}

.svc-overview-badge-label {
    font-size: 12px;
    color: var(--svc-text-muted);
    margin-top: 2px;
}

/* ================================================================
   4. SERVICE FEATURES — 6 cards
   ================================================================ */
.svc-features {
    padding: 40px 0;
    background: #0b1420;
    border-radius: 50px;
    border-top: 5px solid var(--cargo-green);
    border-bottom: 5px solid var(--cargo-green);

}

.svc-features-header {
    text-align: center;
    margin-bottom: 56px;
}

.svc-features-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-orange);
    margin-bottom: 12px;
}

.svc-features-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

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

.svc-feature-card {
    background: var(--svc-card);
    border: 1px solid var(--svc-border);
    border-radius: var(--svc-radius);
    padding: 32px 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.svc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--svc-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.svc-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--svc-shadow-lg);
    border-color: rgba(17, 86, 180, 0.15);
}

.svc-feature-card:hover::before {
    transform: scaleX(1);
}

.svc-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.svc-feature-icon--blue {
    background: rgba(17, 86, 180, 0.08);
    color: var(--svc-blue);
}

.svc-feature-icon--green {
    background: rgba(140, 198, 63, 0.1);
    color: var(--svc-green);
}

.svc-feature-icon--orange {
    background: rgba(249, 115, 22, 0.08);
    color: var(--svc-orange);
}

.svc-feature-card:hover .svc-feature-icon {
    transform: scale(1.08);
}

.svc-feature-card:hover .svc-feature-icon--blue {
    background: var(--svc-blue);
    color: #fff;
}

.svc-feature-card:hover .svc-feature-icon--green {
    background: var(--svc-green);
    color: #fff;
}

.svc-feature-card:hover .svc-feature-icon--orange {
    background: var(--svc-orange);
    color: #fff;
}

.svc-feature-title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 8px;
}

.svc-feature-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--svc-text-muted);
    margin: 0;
}

/* ================================================================
   5. SERVICE PROCESS — Horizontal timeline
   ================================================================ */
.svc-process {
    padding: 80px 0;
    background: var(--svc-navy);
    position: relative;
    overflow: hidden;
}

.svc-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 86, 180, 0.08), transparent 70%);
    pointer-events: none;
}

.svc-process-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.svc-process-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-green);
    margin-bottom: 12px;
}

.svc-process-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.svc-process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.svc-process-line {
    position: absolute;
    top: 36px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.svc-process-line-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--svc-blue), var(--svc-green));
    border-radius: 2px;
    width: 0%;
    transition: width 1.5s ease;
}

.svc-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 140px;
}

.svc-process-num {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.svc-process-step.active .svc-process-num {
    background: var(--svc-blue);
    border-color: var(--svc-blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(17, 86, 180, 0.4);
}

.svc-process-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}

.svc-process-step.active .svc-process-label {
    color: #fff;
}

.svc-process-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.4;
    margin: 0;
    transition: color 0.4s ease;
}

.svc-process-step.active .svc-process-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ================================================================
   6. WHY CHOOSE OM COURIER
   ================================================================ */
.svc-why {
    padding: 80px 0;
    background: #fff;
}

.svc-why-header {
    text-align: center;
    margin-bottom: 56px;
}

.svc-why-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 12px;
}

.svc-why-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
}

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

.svc-why-card {
    background: var(--svc-surface);
    border: 1px solid var(--svc-border);
    border-radius: var(--svc-radius);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.35s ease;
}

.svc-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--svc-shadow);
    border-color: rgba(17, 86, 180, 0.12);
}

.svc-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(17, 86, 180, 0.08), rgba(17, 86, 180, 0.03));
    color: var(--svc-blue);
    transition: all 0.35s ease;
}

.svc-why-card:hover .svc-why-icon {
    background: var(--svc-blue);
    color: #fff;
    transform: scale(1.08);
}

.svc-why-num {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 4px;
}

.svc-why-label {
    font-size: 14px;
    color: var(--svc-text-muted);
    margin: 0;
}

/* ================================================================
   7. INDUSTRIES WE SERVE
   ================================================================ */
.svc-industries {
    padding: 80px 0;
    background: var(--svc-surface);
}

.svc-industries-header {
    text-align: center;
    margin-bottom: 56px;
}

.svc-industries-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-orange);
    margin-bottom: 12px;
}

.svc-industries-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
}

.svc-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.svc-industry-card {
    background: var(--svc-card);
    border: 1px solid var(--svc-border);
    border-radius: var(--svc-radius-sm);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s ease;
}

.svc-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--svc-shadow);
    border-color: rgba(249, 115, 22, 0.15);
}

.svc-industry-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--svc-orange);
    transition: all 0.35s ease;
}

.svc-industry-card:hover .svc-industry-icon {
    background: var(--svc-orange);
    color: #fff;
}

.svc-industry-name {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--svc-text);
    margin: 0;
}

/* ================================================================
   8. STATISTICS — Animated counters
   ================================================================ */
.svc-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--svc-navy) 0%, #001029 100%);
    position: relative;
    overflow: hidden;
}

.svc-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.06), transparent 70%);
    pointer-events: none;
}

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

.svc-stat-item {
    text-align: center;
    padding: 24px 16px;
}

.svc-stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.svc-stat-number .accent {
    color: var(--svc-green);
}

.svc-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ================================================================
   9. FAQ — Accordion
   ================================================================ */
.svc-faq {
    padding: 40px 0;
    background: #fff;
}

.svc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.svc-faq-left {
    position: sticky;
    top: 120px;
}

.svc-faq-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 12px;
}

.svc-faq-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 16px;
}

.svc-faq-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-text-muted);
    margin-bottom: 24px;
}

.svc-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--svc-blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.svc-faq-contact:hover {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 86, 180, 0.35);
    color: #fff;
}

.svc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-faq-item {
    border: 1px solid var(--svc-border);
    border-radius: var(--svc-radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.svc-faq-item.active {
    border-color: rgba(17, 86, 180, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.svc-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--svc-card);
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--svc-text);
    transition: background 0.2s;
}

.svc-faq-question:hover {
    background: var(--svc-surface);
}

.svc-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--svc-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--svc-text-muted);
}

.svc-faq-item.active .svc-faq-toggle {
    background: var(--svc-blue);
    color: #fff;
    transform: rotate(45deg);
}

.svc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.svc-faq-item.active .svc-faq-answer {
    max-height: 300px;
}

.svc-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--svc-text-muted);
}

/* ================================================================
   10. RELATED SERVICES
   ================================================================ */
.svc-related {
    padding: 80px 0;
    background: var(--svc-surface);
}

.svc-related-header {
    text-align: center;
    margin-bottom: 56px;
}

.svc-related-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-green);
    margin-bottom: 12px;
}

.svc-related-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
}

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

.svc-related-card {
    background: var(--svc-card);
    border-radius: var(--svc-radius);
    overflow: hidden;
    border: 1px solid var(--svc-border);
    transition: all 0.35s ease;
    text-decoration: none;
    display: block;
}

.svc-related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--svc-shadow-lg);
    border-color: transparent;
}

.svc-related-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.svc-related-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.5), transparent 60%);
}

.svc-related-body {
    padding: 20px;
}

.svc-related-name {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 6px;
    transition: color 0.2s;
}

.svc-related-card:hover .svc-related-name {
    color: var(--svc-blue);
}

.svc-related-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--svc-text-muted);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.svc-related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-blue);
    text-decoration: none;
    transition: gap 0.2s;
}

.svc-related-card:hover .svc-related-link {
    gap: 10px;
}

/* ================================================================
   11. CALL TO ACTION
   ================================================================ */
.svc-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--svc-navy) 0%, #001029 50%, var(--svc-navy) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.svc-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06), transparent 70%);
    pointer-events: none;
}

.svc-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.svc-cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.svc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.svc-cta-btn-primary {
    background: var(--svc-orange);
    color: #fff;
}

.svc-cta-btn-primary:hover {
    background: var(--svc-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.svc-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.svc-cta-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    color: #fff;
}

.svc-cta-btn-outline {
    background: transparent;
    color: var(--svc-green);
    border: 2px solid var(--svc-green);
}

.svc-cta-btn-outline:hover {
    background: var(--svc-green);
    color: var(--svc-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(140, 198, 63, 0.3);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* ---- 1. Hero ---- */
.about-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(0, 16, 41, 0.85) 50%, rgba(10, 14, 26, 0.88) 100%);
}

.about-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--svc-surface), transparent);
}

.about-hero .container-custom {
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(249, 115, 22, 0.15);
    color: var(--svc-orange);
    border: 1px solid rgba(249, 115, 22, 0.25);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.about-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
    max-width: 650px;
}

.about-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin-bottom: 0;
}

/* ---- 2. Company Intro ---- */
.about-intro {
    padding: 80px 0;
    background: var(--svc-surface);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-intro-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 12px;
}

.about-intro-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--svc-text);
    margin-bottom: 20px;
}

.about-intro-desc {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--svc-text-muted);
    margin-bottom: 16px;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-intro-stat {
    background: var(--svc-card);
    border: 1px solid var(--svc-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.about-intro-stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--svc-blue);
    line-height: 1;
    margin-bottom: 4px;
}

.about-intro-stat-label {
    font-size: 12px;
    color: var(--svc-text-muted);
}

.about-intro-visual {
    position: relative;
}

.about-intro-img {
    width: 100%;
    height: 440px;
    border-radius: var(--svc-radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--svc-shadow-xl);
}

.about-intro-float-card {
    position: absolute;
    background: var(--svc-card);
    border-radius: var(--svc-radius-sm);
    padding: 16px 20px;
    box-shadow: var(--svc-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--svc-border);
    animation: float 3s ease-in-out infinite;
}

.about-intro-float-card svg {
    color: var(--svc-blue);
    flex-shrink: 0;
}

.about-intro-float-1 {
    bottom: -20px;
    left: -20px;
    animation-delay: 0s;
}

.about-intro-float-2 {
    top: -16px;
    right: -16px;
    animation-delay: 1.5s;
}

.about-intro-float-num {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--svc-text);
    line-height: 1;
}

.about-intro-float-label {
    font-size: 11px;
    color: var(--svc-text-muted);
    margin-top: 2px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ---- 3. Our Story ---- */
/* ---- 3. Our Journey / Timeline ---- */
.about-story {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--svc-surface) 0%, #f0f4f9 100%);
    position: relative;
    overflow: hidden;
}

.about-story-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(17, 86, 180, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(140, 198, 63, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-story-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.about-story-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--svc-orange);
    margin-bottom: 14px;
    background: rgba(249, 115, 22, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
}

.about-story-title {
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 14px;
}

.about-story-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: var(--svc-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.about-timeline {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
}

.about-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: var(--svc-border);
    border-radius: 3px;
}

.about-timeline-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--svc-blue), var(--svc-green));
    border-radius: 3px;
    transition: height 1.8s ease;
}

.about-timeline-line-fill.animate {
    height: 100%;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    align-items: start;
    gap: 0;
    margin-bottom: 16px;
    position: relative;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

/* Card */
.about-timeline-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    border: 1px solid var(--svc-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
}

/* Odd items: card on left (col 1), dot in center (col 2), spacer on right (col 3) */
.about-timeline-item:nth-child(odd) .about-timeline-card {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    margin-right: 16px;
}

.about-timeline-item:nth-child(odd) .about-timeline-dot {
    grid-column: 2;
    grid-row: 1;
}

.about-timeline-item:nth-child(odd) .about-timeline-spacer {
    grid-column: 3;
    grid-row: 1;
}

/* Even items: spacer on left (col 1), dot in center (col 2), card on right (col 3) */
.about-timeline-item:nth-child(even) .about-timeline-spacer {
    grid-column: 1;
    grid-row: 1;
}

.about-timeline-item:nth-child(even) .about-timeline-dot {
    grid-column: 2;
    grid-row: 1;
}

.about-timeline-item:nth-child(even) .about-timeline-card {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    margin-left: 16px;
}

.about-timeline-spacer {
    min-height: 1px;
}

/* Year Badge */
.about-timeline-year-badge {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--svc-blue);
    background: rgba(17, 86, 180, 0.08);
    padding: 5px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.about-timeline-year-badge--now {
    color: var(--svc-green);
    background: rgba(140, 198, 63, 0.1);
}

/* Dot */
.about-timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff;
    border: 3px solid var(--svc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--svc-text-muted);
    justify-self: center;
    align-self: start;
    margin-top: 24px;
    z-index: 2;
    position: relative;
}

.about-timeline-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    border: 2px solid transparent;
}

.about-timeline-dot.active {
    background: var(--svc-blue);
    border-color: var(--svc-blue);
    color: #fff;
    box-shadow: 0 8px 28px rgba(17, 86, 180, 0.35);
}

.about-timeline-dot.active::before {
    border-color: rgba(17, 86, 180, 0.2);
}

/* Title + Desc */
.about-timeline-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 8px;
}

.about-timeline-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--svc-text-muted);
    margin: 0 0 14px;
}

/* Tag item */
.about-timeline-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--svc-blue);
    background: rgba(17, 86, 180, 0.06);
    padding: 5px 12px;
    border-radius: 8px;
}

.about-timeline-tag-item svg {
    flex-shrink: 0;
}

.about-timeline-tag-item--green {
    color: var(--svc-green);
    background: rgba(140, 198, 63, 0.08);
}

/* ---- 4. Who We Are ---- */
.about-services {
    padding: 80px 0;
    background: var(--svc-surface);
}

.about-services-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-services-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 12px;
}

.about-services-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
}

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

.about-service-card {
    background: none;
    border: none;
    border-left: 3px solid var(--svc-blue);
    border-radius: 0;
    padding: 24px 0 24px 24px;
}

.about-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-service-icon--blue {
    background: rgba(17, 86, 180, 0.08);
    color: var(--svc-blue);
}

.about-service-icon--orange {
    background: rgba(249, 115, 22, 0.08);
    color: var(--svc-orange);
}

.about-service-icon--green {
    background: rgba(140, 198, 63, 0.1);
    color: var(--svc-green);
}

.about-service-name {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 8px;
}

.about-service-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--svc-text-muted);
    margin: 0;
}

/* ---- 5. Why Choose Us ---- */
.about-why {
    padding: 80px 0;
    background: #fff;
}

.about-why-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-why-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-orange);
    margin-bottom: 12px;
}

.about-why-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
}

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

.about-why-card {
    background: var(--svc-surface);
    border: 1px solid var(--svc-border);
    border-radius: var(--svc-radius);
    padding: 32px 28px;
    text-align: center;
}

.about-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(17, 86, 180, 0.08), rgba(17, 86, 180, 0.03));
    color: var(--svc-blue);
}

.about-why-icon--orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.03));
    color: var(--svc-orange);
}

.about-why-icon--green {
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.08), rgba(140, 198, 63, 0.03));
    color: var(--svc-green);
}

.about-why-title-text {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 8px;
}

.about-why-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--svc-text-muted);
    margin: 0;
}

/* ---- 6. Mission, Vision & Strategy ---- */
.about-mvs {
    padding: 80px 0;
    background: #edf3f4;
}

.about-mvs-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-mvs-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-green);
    margin-bottom: 12px;
}

.about-mvs-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
}

.about-mvs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-mvs-card {
    border-radius: var(--svc-radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.about-mvs-card--mission {
    background: linear-gradient(135deg, var(--svc-navy), #001029);
    color: #fff;
}

.about-mvs-card--vision {
    background: linear-gradient(135deg, var(--svc-blue), var(--svc-blue-light));
    color: #fff;
}

.about-mvs-card--strategy {
    background: linear-gradient(135deg, #1a5e1f, #2d8a33);
    color: #fff;
}

.about-mvs-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    backdrop-filter: blur(8px);
}

.about-mvs-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-mvs-card-desc {
    font-size: 14.5px;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

/* ---- 7. Our Strengths ---- */
.about-strengths {
    padding: 80px 0;
    background: #fff;
}

.about-strengths-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-strengths-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 12px;
}

.about-strengths-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
}

.about-strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-strength-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    background: var(--svc-surface);
    border: 1px solid var(--svc-border);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--svc-text);
}

.about-strength-check {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(140, 198, 63, 0.12);
    color: var(--svc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- 8. Our Process ---- */
.about-process {
    padding: 80px 0;
    background: var(--svc-navy);
    position: relative;
    overflow: hidden;
}

.about-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 86, 180, 0.08), transparent 70%);
    pointer-events: none;
}

.about-process-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.about-process-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-green);
    margin-bottom: 12px;
}

.about-process-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.about-process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.about-process-line {
    position: absolute;
    top: 36px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.about-process-line-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--svc-blue), var(--svc-green));
    border-radius: 2px;
    width: 0%;
    transition: width 1.5s ease;
}

.about-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 140px;
}

.about-process-num {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.about-process-step.active .about-process-num {
    background: var(--svc-blue);
    border-color: var(--svc-blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(17, 86, 180, 0.4);
}

.about-process-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.4s ease;
}

.about-process-step.active .about-process-label {
    color: #fff;
}

/* ---- 9. Global Reach ---- */
.about-reach {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--svc-navy) 0%, #001029 100%);
    position: relative;
    overflow: hidden;
}

.about-reach::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.06), transparent 70%);
    pointer-events: none;
}

.about-reach-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.about-reach-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-green);
    margin-bottom: 12px;
}

.about-reach-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.about-reach-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto;
}

.about-reach-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.about-reach-stat {
    text-align: center;
    padding: 24px 16px;
}

.about-reach-stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.about-reach-stat-number .accent {
    color: var(--svc-green);
}

.about-reach-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ---- 10. Customer Commitment ---- */
.about-commitment {
    padding: 80px 0;
    background: var(--svc-surface);
}

.about-commitment-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-commitment-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-orange);
    margin-bottom: 12px;
}

.about-commitment-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 12px;
}

.about-commitment-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.about-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    max-width: 880px;
    margin: 0 auto;
}

.about-commitment-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    border: none;
}

.about-commitment-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(17, 86, 180, 0.08);
    color: var(--svc-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-commitment-icon--green {
    background: rgba(140, 198, 63, 0.1);
    color: var(--svc-green);
}

.about-commitment-icon--orange {
    background: rgba(249, 115, 22, 0.08);
    color: var(--svc-orange);
}

.about-commitment-name {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 4px;
}

.about-commitment-desc-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--svc-text-muted);
    margin: 0;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* ---- 1. Hero ---- */
.ct-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ct-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(0, 16, 41, 0.85) 50%, rgba(10, 14, 26, 0.88) 100%);
}

.ct-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--svc-surface), transparent);
}

.ct-hero .container-custom {
    position: relative;
    z-index: 2;
}

.ct-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
}

.ct-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin-bottom: 0;
}

/* ---- 2. Form + Info Side by Side ---- */
.ct-main {
    padding: 80px 0;
    background: var(--svc-surface);
}

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

/* -- Left: Form -- */
.ct-main-form {
    background: #fff;
    border: 1px solid var(--svc-border);
    border-radius: var(--svc-radius);
    padding: 40px;
}

.ct-main-title {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 8px;
}

.ct-main-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: var(--svc-text-muted);
    margin-bottom: 28px;
}

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

.ct-form-group {
    margin-bottom: 0;
}

.ct-form-group:last-of-type {
    margin-bottom: 24px;
}

.ct-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 6px;
}

.ct-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: var(--svc-radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.ct-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    background: rgba(17, 86, 180, 0.06);
    color: var(--outline);
    pointer-events: none;
    transition: color 0.2s, background 0.2s;
}

.ct-input-icon--textarea {
    min-height: 48px;
    align-self: stretch;
}

.ct-form-input {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--svc-text);
    background: transparent;
    border: none;
    outline: none;
}

.ct-form-input::placeholder {
    color: var(--svc-text-muted);
    opacity: 0.6;
}

.ct-form-input:focus {
    background: transparent;
}

.ct-input-wrap:focus-within {
    border-color: var(--svc-blue);
    box-shadow: 0 0 0 3px rgba(17, 86, 180, 0.1);
}

.ct-input-wrap:focus-within .ct-input-icon {
    color: var(--svc-blue);
    background: rgba(17, 86, 180, 0.1);
}

.ct-form-textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 12px;
}

.ct-input-wrap--textarea {
    align-items: flex-start;
}

.ct-form-error {
    display: none;
    font-size: 12px;
    color: var(--alert-red);
    margin-top: 4px;
}

.ct-form-group--error .ct-input-wrap {
    border-color: var(--alert-red);
}

.ct-form-group--error .ct-form-error {
    display: block;
}

.ct-form-group--error .ct-input-icon {
    color: var(--alert-red);
    background: rgba(230, 57, 70, 0.08);
}

.ct-form-group--error .ct-input-wrap:focus-within {
    border-color: var(--alert-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.ct-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--svc-blue);
    border: none;
    border-radius: var(--svc-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.ct-form-btn:hover {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 86, 180, 0.3);
}

.ct-form-btn:disabled {
    opacity: 0.8;
    cursor: default;
    transform: none;
}

.ct-form-btn--success {
    background: var(--svc-green);
}

.ct-form-btn--success:hover {
    background: var(--svc-green);
    box-shadow: 0 8px 24px rgba(140, 198, 63, 0.3);
}

/* -- Right: Contact Info -- */
.ct-main-info {
    background: linear-gradient(135deg, var(--svc-navy) 0%, #001029 100%);
    border-radius: var(--svc-radius);
    padding: 40px;
    color: #fff;
}

.ct-main-info-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
}

.ct-main-info-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-main-info-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-main-info-block:first-of-type {
    padding-top: 0;
}

.ct-main-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(17, 86, 180, 0.2);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-main-info-icon--green {
    background: rgba(140, 198, 63, 0.2);
}

.ct-main-info-icon--orange {
    background: rgba(249, 115, 22, 0.2);
}

.ct-main-info-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4px;
}

.ct-main-info-block a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.6;
}

.ct-main-info-block a:hover {
    color: #fff;
}

.ct-main-info-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.ct-main-info-closed {
    color: rgba(242, 26, 33, 0.85) !important;
    font-weight: 600;
}

/* ---- 3. Google Map ---- */
.ct-map {
    padding: 80px 0;
    background: #fff;
}

.ct-map-wrapper {
    border-radius: var(--svc-radius);
    overflow: hidden;
    box-shadow: var(--svc-shadow-lg);
    margin-bottom: 32px;
}

.ct-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.ct-map-actions {
    text-align: center;
}

.ct-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--svc-blue);
    border-radius: var(--svc-radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-map-btn:hover {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 86, 180, 0.3);
    color: #fff;
}

/* ================================================================
   ENQUIRY PAGE
   ================================================================ */

/* ---- 1. Hero ---- */
.eq-hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.eq-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.eq-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(0, 16, 41, 0.85) 50%, rgba(10, 14, 26, 0.88) 100%);
}

.eq-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--svc-surface), transparent);
}

.eq-hero .container-custom {
    position: relative;
    z-index: 2;
}

.eq-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
}

.eq-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 0;
}

/* ---- 2. Floating Form ---- */
.eq-form-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 80px;
}

.eq-form-section .container-custom {
    position: relative;
    z-index: 10;
}

.eq-form-card {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--svc-radius);
    padding: 48px;
    box-shadow: var(--svc-shadow-xl);
}

.eq-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.eq-form-title {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 10px;
}

.eq-form-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-text-muted);
    max-width: 480px;
    margin: 0 auto;
}

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

.eq-form-group {
    margin-bottom: 0;
}

.eq-required {
    color: var(--svc-orange);
}

.eq-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 6px;
}

.eq-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: var(--svc-radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.eq-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    background: rgba(17, 86, 180, 0.06);
    color: var(--outline);
    pointer-events: none;
    transition: color 0.2s, background 0.2s;
}

.eq-input-icon--textarea {
    min-height: 48px;
    align-self: stretch;
}

.eq-form-input {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--svc-text);
    background: transparent;
    border: none;
    outline: none;
    transition: none;
    appearance: none;
    -webkit-appearance: none;
}

.eq-form-input::placeholder {
    color: var(--svc-text-muted);
    opacity: 0.6;
}

.eq-form-input:focus {
    background: transparent;
}

.eq-input-wrap:focus-within {
    border-color: var(--svc-blue);
    box-shadow: 0 0 0 3px rgba(17, 86, 180, 0.1);
}

.eq-input-wrap:focus-within .eq-input-icon {
    color: var(--svc-blue);
    background: rgba(17, 86, 180, 0.1);
}

.eq-form-textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 12px;
}

.eq-input-wrap--textarea {
    align-items: flex-start;
}

/* Select */
.eq-input-wrap--select {
    position: relative;
}

.eq-form-select {
    cursor: pointer;
    padding-right: 40px;
}

.eq-select-arrow {
    position: absolute;
    right: 14px;
    color: var(--outline);
    pointer-events: none;
    flex-shrink: 0;
}

/* Validation */
.eq-form-error {
    display: none;
    font-size: 12px;
    color: var(--alert-red);
    margin-top: 4px;
}

.eq-form-group--error .eq-input-wrap {
    border-color: var(--alert-red);
}

.eq-form-group--error .eq-form-error {
    display: block;
}

.eq-form-group--error .eq-input-icon {
    color: var(--alert-red);
    background: rgba(230, 57, 70, 0.08);
}

.eq-form-group--error .eq-input-wrap:focus-within {
    border-color: var(--alert-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* Submit Button */
.eq-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--svc-blue);
    border: none;
    border-radius: var(--svc-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.eq-form-btn:hover:not(:disabled) {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 86, 180, 0.3);
}

.eq-form-btn:disabled {
    opacity: 0.85;
    cursor: default;
    transform: none;
}

.eq-form-btn--success {
    background: var(--svc-green) !important;
}

.eq-form-btn--success:hover {
    box-shadow: 0 8px 24px rgba(140, 198, 63, 0.3) !important;
}

.eq-btn-arrow {
    flex-shrink: 0;
}

@keyframes eq-spin {
    to {
        transform: rotate(360deg);
    }
}

.eq-spin {
    animation: eq-spin 0.8s linear infinite;
}

/* ================================================================
   PICKUP REQUEST PAGE — Reuses enquiry layout with pk- prefix
   ================================================================ */
.pk-hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.pk-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.pk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(0, 16, 41, 0.85) 50%, rgba(10, 14, 26, 0.88) 100%);
}

.pk-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--svc-surface), transparent);
}

.pk-hero .container-custom {
    position: relative;
    z-index: 2;
}

.pk-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
}

.pk-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 0;
}

.pk-form-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 80px;
}

.pk-form-section .container-custom {
    position: relative;
    z-index: 10;
}

.pk-form-card {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--svc-radius);
    padding: 48px;
    box-shadow: var(--svc-shadow-xl);
}

.pk-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.pk-form-title {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 10px;
}

.pk-form-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-text-muted);
    max-width: 480px;
    margin: 0 auto;
}

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

.pk-form-group {
    margin-bottom: 0;
}

.pk-required {
    color: var(--svc-orange);
}

.pk-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 6px;
}

.pk-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: var(--svc-radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.pk-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    background: rgba(17, 86, 180, 0.06);
    color: var(--outline);
    pointer-events: none;
    transition: color 0.2s, background 0.2s;
}

.pk-input-icon--textarea {
    min-height: 48px;
    align-self: stretch;
}

.pk-form-input {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--svc-text);
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.pk-form-input::placeholder {
    color: var(--svc-text-muted);
    opacity: 0.6;
}

.pk-form-input:focus {
    background: transparent;
}

.pk-input-wrap:focus-within {
    border-color: var(--svc-blue);
    box-shadow: 0 0 0 3px rgba(17, 86, 180, 0.1);
}

.pk-input-wrap:focus-within .pk-input-icon {
    color: var(--svc-blue);
    background: rgba(17, 86, 180, 0.1);
}

.pk-form-textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 12px;
}

.pk-input-wrap--textarea {
    align-items: flex-start;
}

.pk-input-wrap--select {
    position: relative;
}

.pk-form-select {
    cursor: pointer;
    padding-right: 40px;
}

.pk-select-arrow {
    position: absolute;
    right: 14px;
    color: var(--outline);
    pointer-events: none;
    flex-shrink: 0;
}

.pk-form-error {
    display: none;
    font-size: 12px;
    color: var(--alert-red);
    margin-top: 4px;
}

.pk-form-group--error .pk-input-wrap {
    border-color: var(--alert-red);
}

.pk-form-group--error .pk-form-error {
    display: block;
}

.pk-form-group--error .pk-input-icon {
    color: var(--alert-red);
    background: rgba(230, 57, 70, 0.08);
}

.pk-form-group--error .pk-input-wrap:focus-within {
    border-color: var(--alert-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.pk-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--svc-blue);
    border: none;
    border-radius: var(--svc-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.pk-form-btn:hover:not(:disabled) {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 86, 180, 0.3);
}

.pk-form-btn:disabled {
    opacity: 0.85;
    cursor: default;
    transform: none;
}

.pk-form-btn--success {
    background: var(--svc-green) !important;
}

.pk-form-btn--success:hover {
    box-shadow: 0 8px 24px rgba(140, 198, 63, 0.3) !important;
}

.pk-btn-arrow {
    flex-shrink: 0;
}

@keyframes pk-spin {
    to {
        transform: rotate(360deg);
    }
}

.pk-spin {
    animation: pk-spin 0.8s linear infinite;
}

/* Pickup: Section divider */
.pk-form-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 36px 0 24px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--svc-border);
}

.pk-form-section-divider--top {
    margin-top: 40px;
}

.pk-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(17, 86, 180, 0.08);
    color: var(--svc-blue);
    flex-shrink: 0;
}

.pk-section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-text);
    letter-spacing: -0.01em;
}

/* Pickup: 3-column row */
.pk-form-row--three {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Pickup: Half-width group */
.pk-form-group--half {
    max-width: 50%;
    margin-bottom: 16px;
}

/* Pickup: Weight input with kg suffix */
.pk-input-wrap--suffix {
    position: relative;
}

.pk-form-input--has-suffix {
    padding-right: 48px;
}

.pk-input-suffix {
    position: absolute;
    right: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--svc-text-muted);
    pointer-events: none;
    background: transparent;
    padding: 2px 0;
}

/* ================================================================
   TRACKING PAGE
   ================================================================ */

/* ---- Hero ---- */
.tk-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tk-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.tk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(0, 16, 41, 0.85) 50%, rgba(10, 14, 26, 0.88) 100%);
}

.tk-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--svc-surface), transparent);
}

.tk-hero .container-custom {
    position: relative;
    z-index: 2;
}

.tk-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
}

.tk-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 0;
}

/* ---- Main Section ---- */
.tk-main {
    padding: 60px 0 80px;
    background: var(--svc-surface);
}

/* ---- Tracking Card ---- */
.tk-card {
    background: #fff;
    border-radius: 20px;
    padding: 0 36px 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 800px;
    margin: -60px auto 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.tk-card-accent {
    height: 4px;
    margin: 0 -36px 28px;
    background: linear-gradient(90deg, var(--secondary-container), var(--velocity-blue), var(--secondary-container));
    background-size: 200% 100%;
    animation: accent-shimmer 3s ease infinite;
}

.tk-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.tk-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--secondary-container), #8ab52a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-secondary-container);
    flex-shrink: 0;
    position: relative;
}

.tk-card-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    border: 2px solid var(--secondary-container);
    animation: pulse-ring 2s ease-out infinite;
}

.tk-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.tk-card-subtitle {
    font-size: 14px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

/* ---- Type Tabs ---- */
.tk-type-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    background: var(--surface);
    border-radius: 12px;
    padding: 4px;
}

.tk-type-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border: none;
    border-radius: 10px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tk-type-tab svg {
    flex-shrink: 0;
}

.tk-type-tab:hover {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.03);
}

.tk-type-tab.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* ---- Input Group ---- */
.tk-input-group {
    position: relative;
    margin-bottom: 16px;
}

.tk-input-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--svc-text-muted);
    pointer-events: none;
    transition: color 0.2s;
}

.tk-input {
    width: 100%;
    padding: 16px 48px 16px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--svc-text);
    background: #fff;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.tk-input::placeholder {
    color: var(--svc-text-muted);
    opacity: 0.6;
}

.tk-input:focus {
    border-color: var(--svc-blue);
    box-shadow: 0 0 0 4px rgba(17, 86, 180, 0.1);
}

.tk-input:focus~.tk-input-search-icon {
    color: var(--svc-blue);
}

.tk-input-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: var(--surface);
    color: var(--svc-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.tk-input-clear:hover {
    background: #e2e8f0;
    color: var(--svc-text);
}

/* ---- Track Button ---- */
.tk-btn-track {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--svc-blue);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.tk-btn-track:hover:not(:disabled) {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 86, 180, 0.3);
}

.tk-btn-track:disabled {
    opacity: 0.85;
    cursor: default;
    transform: none;
}

.tk-btn-icon {
    display: inline-flex;
}

@keyframes tk-spin {
    to {
        transform: rotate(360deg);
    }
}

.tk-spin {
    animation: tk-spin 0.8s linear infinite;
}

/* ---- Card Divider & Trust ---- */
.tk-card-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 24px 0;
}

.tk-card-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.tk-card-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--svc-text-muted);
}

.tk-card-trust-item svg {
    color: var(--secondary-container);
    flex-shrink: 0;
}

/* ---- Results ---- */
.tk-results {
    max-width: 800px;
    margin: 32px auto 0;
}

.tk-results-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ---- Result Card ---- */
.tk-result-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s;
}

.tk-result-card--open {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tk-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
    gap: 16px;
}

.tk-result-header:hover {
    background: #f8fafc;
}

.tk-result-info {
    flex: 1;
    min-width: 0;
}

.tk-result-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.tk-status--delivered {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.tk-status--transit {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.tk-status--booked {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

.tk-status--pending {
    background: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}

.tk-result-awb {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 6px;
}

.tk-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tk-result-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--svc-text-muted);
}

.tk-result-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
    color: var(--svc-text-muted);
}

.tk-result-card--open .tk-result-toggle {
    transform: rotate(180deg);
    background: rgba(17, 86, 180, 0.08);
    color: var(--svc-blue);
}

.tk-result-body {
    display: none;
    padding: 0 24px 24px;
}

.tk-result-card--open .tk-result-body {
    display: block;
}

/* ---- Status Banner ---- */
.tk-status-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 24px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.tk-status-banner.tk-status--delivered {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tk-status-banner.tk-status--transit {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.03));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tk-status-banner.tk-status--booked {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.03));
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.tk-status-banner.tk-status--pending {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.08), rgba(234, 179, 8, 0.03));
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.tk-status-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tk-status--delivered .tk-status-banner-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.tk-status--transit .tk-status-banner-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.tk-status--booked .tk-status-banner-icon {
    background: rgba(249, 115, 22, 0.15);
    color: #ea580c;
}

.tk-status--pending .tk-status-banner-icon {
    background: rgba(234, 179, 8, 0.15);
    color: #ca8a04;
}

.tk-status-banner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tk-status-banner-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tk-status--delivered .tk-status-banner-label {
    color: #16a34a;
}

.tk-status--transit .tk-status-banner-label {
    color: #2563eb;
}

.tk-status--booked .tk-status-banner-label {
    color: #ea580c;
}

.tk-status--pending .tk-status-banner-label {
    color: #ca8a04;
}

.tk-status-banner-text {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--svc-text);
}

/* ---- Info Cards (4-box row) ---- */
.tk-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.tk-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}


.tk-info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.tk-info-card-icon--route {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.tk-info-card-icon--person {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

.tk-info-card-icon--pieces {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.tk-info-card-icon--date {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.tk-info-card-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tk-info-card-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--svc-text-muted);
}

.tk-info-card-value {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--svc-text);
    line-height: 1.3;
    word-break: break-word;
}

/* ---- Detail Section ---- */
.tk-detail-section {
    margin-bottom: 24px;
}

.tk-detail-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.tk-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tk-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.tk-detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--svc-text-muted);
}

.tk-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--svc-text);
}

.tk-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--svc-blue);
    text-decoration: none;
    font-weight: 600;
}

.tk-detail-link:hover {
    text-decoration: underline;
}

/* ---- Result Sections ---- */
.tk-result-section {
    margin-top: 20px;
}

.tk-result-section--timeline {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.tk-result-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.tk-result-section-title svg {
    color: var(--svc-blue);
}

/* ---- Timeline ---- */
.tk-timeline {
    position: relative;
    padding-left: 20px;
}

.tk-timeline-item {
    position: relative;
    padding-bottom: 24px;
    padding-left: 24px;
}

.tk-timeline-item:last-child {
    padding-bottom: 0;
}

.tk-timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--velocity-blue);
    border: 2px solid #fff;
    z-index: 2;
    box-shadow: 0 0 0 2px var(--velocity-blue);
}

.tk-timeline-item--current .tk-timeline-dot {
    background: var(--svc-blue);
    box-shadow: 0 0 0 2px var(--svc-blue), 0 0 0 6px rgba(17, 86, 180, 0.15);
}

.tk-timeline-line {
    position: absolute;
    left: 5px;
    top: 16px;
    bottom: 0;
    width: 2px;
    background: var(--velocity-blue);
    z-index: 1;
}

.tk-timeline-content {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
}

.tk-timeline-item--current .tk-timeline-content {
    background: rgba(17, 86, 180, 0.04);
    border-color: rgba(17, 86, 180, 0.15);
}

.tk-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.tk-timeline-activity {
    font-size: 13px;
    font-weight: 600;
    color: var(--svc-text);
    line-height: 1.4;
}

.tk-timeline-datetime {
    font-size: 12px;
    color: var(--svc-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.tk-timeline-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--svc-text-muted);
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #e2e8f0;
}

.tk-timeline-remark {
    font-size: 12px;
    color: var(--svc-text-muted);
    font-style: italic;
    margin-top: 4px;
}

/* ---- No Result ---- */
.tk-no-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    color: var(--svc-text-muted);
    font-size: 14px;
}

.tk-no-result svg {
    color: #ef4444;
    flex-shrink: 0;
}

/* ---- How It Works ---- */
.tk-how {
    padding: 80px 0;
    background: #fff;
}

.tk-how-header {
    text-align: center;
    margin-bottom: 48px;
}

.tk-how-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 10px;
}

.tk-how-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 0;
}

.tk-how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.tk-how-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tk-how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tk-how-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--svc-blue);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tk-how-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--svc-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tk-how-step-icon-blue {
    background: rgba(17, 86, 180, 0.08);
    color: var(--svc-blue);
}

.tk-how-step-icon-green {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
}

.tk-how-step-title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--svc-text);
    margin-bottom: 8px;
}

.tk-how-step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--svc-text-muted);
    margin-bottom: 0;
}

.tk-how-step-arrow {
    color: #cbd5e1;
    flex-shrink: 0;
}

/* ---- Help Section ---- */
.tk-help {
    padding: 0 0 80px;
    background: #fff;
}

.tk-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(17, 86, 180, 0.06), rgba(17, 86, 180, 0.02));
    border: 1px solid rgba(17, 86, 180, 0.1);
    border-radius: 20px;
}

.tk-help-content {
    flex: 1;
}

.tk-help-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--svc-text);
    margin-bottom: 8px;
}

.tk-help-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-text-muted);
    margin-bottom: 20px;
}

.tk-help-actions {
    display: flex;
    gap: 12px;
}

.tk-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tk-help-btn-primary {
    background: var(--svc-blue);
    color: #fff;
}

.tk-help-btn-primary:hover {
    background: var(--svc-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 86, 180, 0.3);
}

.tk-help-btn-secondary {
    background: #fff;
    color: var(--svc-text);
    border: 1.5px solid #d1d5db;
}

.tk-help-btn-secondary:hover {
    border-color: var(--svc-blue);
    color: var(--svc-blue);
}

.tk-help-visual {
    flex-shrink: 0;
}

.tk-help-icon-big {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(17, 86, 180, 0.1), rgba(17, 86, 180, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--svc-blue);
}

/* ================================================================
   TOAST NOTIFICATION
   ================================================================ */
.ct-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    max-width: 90vw;
    text-align: left;
    white-space: normal;
}
.ct-toast--show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.ct-toast--success {
    background: linear-gradient(135deg, #16a34a, #15803d);
}
.ct-toast--error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.ct-toast svg {
    flex-shrink: 0;
}

/* ================================================================
   CONTACT FORM BUTTON STATES
   ================================================================ */
.ct-form-btn--success {
    background: var(--svc-green) !important;
}
.ct-form-btn--success:hover {
    box-shadow: 0 8px 24px rgba(140, 198, 63, 0.3) !important;
}
.eq-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    max-width: 90vw;
    text-align: left;
    white-space: normal;
}
.eq-toast--show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.eq-toast--success {
    background: linear-gradient(135deg, #16a34a, #15803d);
}
.eq-toast--error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.eq-toast svg {
    flex-shrink: 0;
}
.pk-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    max-width: 90vw;
    text-align: left;
    white-space: normal;
}
.pk-toast--show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.pk-toast--success {
    background: linear-gradient(135deg, #16a34a, #15803d);
}
.pk-toast--error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.pk-toast svg {
    flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────
   Pickup Form: Two-Column Layout & Banners
   ────────────────────────────────────────────────────────── */
.pk-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.pk-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 968px) {
    .pk-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Banner (success/error at top of form) */
.pk-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: pkBannerFadeIn 0.3s ease;
}

.pk-banner--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pk-banner--success svg {
    stroke: #28a745;
    flex-shrink: 0;
}

.pk-banner--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pk-banner--error svg {
    stroke: #dc3545;
    flex-shrink: 0;
}

@keyframes pkBannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Page Tracking Inline Results */
.svc-tracking-results {
    margin-top: 24px;
    margin-bottom: 10px;
}

.svc-result-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: fadeSlideUp 0.35s ease;
}

.svc-result-card--error {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
}

.svc-result-top {
    margin-bottom: 16px;
}

.svc-result-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.svc-result-badge--delivered {
    background: #d4edda;
    color: #155724;
}

.svc-result-badge--transit {
    background: #cce5ff;
    color: #004085;
}

.svc-result-badge--booked {
    background: #fff3cd;
    color: #856404;
}

.svc-result-badge--pending {
    background: #f8d7da;
    color: #721c24;
}

.svc-result-awb {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary, #1156b4);
    margin: 0;
}

.svc-result-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-bottom: 16px;
}

.svc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f8f8;
}

.svc-result-row:last-child {
    border-bottom: none;
}

.svc-result-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.svc-result-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

.svc-result-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary, #1156b4), #1a6dd4);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
}

.svc-result-view-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(17, 86, 180, 0.35);
    color: #fff;
}
.hero-tracking-results {
    margin-top: 20px;
    width: 100%;
}

.hero-result-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: fadeSlideUp 0.35s ease;
}

.hero-result-card--error {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
}

.hero-result-top {
    margin-bottom: 16px;
}

.hero-result-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.hero-result-badge--delivered {
    background: #d4edda;
    color: #155724;
}

.hero-result-badge--transit {
    background: #cce5ff;
    color: #004085;
}

.hero-result-badge--booked {
    background: #fff3cd;
    color: #856404;
}

.hero-result-badge--pending {
    background: #f8d7da;
    color: #721c24;
}

.hero-result-awb {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary, #1156b4);
    margin: 0;
}

.hero-result-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-bottom: 16px;
}

.hero-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f8f8;
}

.hero-result-row:last-child {
    border-bottom: none;
}

.hero-result-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-result-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

.hero-result-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary, #1156b4), #1a6dd4);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
}

.hero-result-view-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(17, 86, 180, 0.35);
    color: #fff;
}

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