:root {
    --surface: #ffffff;
    --surface-soft: #f7f8fb;
    --text: #162033;
    --muted: #697586;
    --line: rgba(22, 32, 51, 0.1);
    --primary: #02255f;
    --primary-dark: #011a43;
    --secondary: #0ba54b;
    --secondary-dark: #07873c;
    --soft: #eaf8f0;
    --bg-top: #f8fafc;
    --bg-bottom: #eef4f7;
    --shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    --section-space: 80px;
    --transition: all 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    /* background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%); */
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

p {
    margin: 0;
    color: var(--muted);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    line-height: 1.15;
}

.section_space {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

.section_text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
}

.common_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.6rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.common_btn--primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.common_btn--primary:hover,
.common_btn--primary:focus {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #ffffff;
}

.common_btn--block {
    width: 100%;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.navbar-brand {
    text-decoration: none;
}

.navbar-brand img {
    width: 200px;
}

.navbar .nav-link {
    color: var(--muted);
    font-weight: 500;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--secondary-dark);
    background-color: var(--soft);
}

.menu-toggle {
    padding: 0.35rem 0.5rem;
    border-radius: 12px;
    background: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2820, 33, 61, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
}

.hero-scene {
    position: relative;
    min-height: 600px;
    background-color: #fafbfe;
    background-image: url('../images/hero-truck-new.png');
    background-position: 85% center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 30%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.15) 80%, rgba(2, 37, 95, 0.05) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 75%, #fafbfe 100%);
    z-index: 1;
}

.hero-row {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    z-index: 2;
    width: 100%;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 620px;
}

.hero-kicker-badge {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-dark);
    background: var(--soft);
    border: 1px solid rgba(11, 165, 75, 0.15);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    max-width: 24ch;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
}

.hero-title span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(11, 165, 75, 0.15);
    z-index: -1;
    border-radius: 2px;
}

.hero-text {
    max-width: 50ch;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 52px;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
}

.hero-btn:hover,
.hero-btn:focus {
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-btn--book {
    background: var(--secondary);
    border-color: var(--secondary);
}

.hero-btn--book:hover,
.hero-btn--book:focus {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    box-shadow: 0 4px 12px rgba(11, 165, 75, 0.2);
}

.hero-btn-arrow {
    transition: transform 0.25s ease;
}

.hero-btn--book:hover .hero-btn-arrow {
    transform: translateX(4px);
}


.hero-btn--whatsapp {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.hero-btn--whatsapp:hover,
.hero-btn--whatsapp:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 37, 95, 0.15);
}

.hero-feature-strip {
    display: flex;
    gap: 30px;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex: 1 1 170px;
    transition: none;
}

.hero-feature:hover {
    transform: none;
}

.hero-feature-icon-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--soft);
    color: var(--secondary-dark);
    font-size: 1rem;
    flex: 0 0 36px;
}

.hero-feature span {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.hero-feature strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.hero-brand-badge {
    position: absolute;
    z-index: 1;
    right: 8.5%;
    top: 34%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 250px;
    padding: 1rem 1.15rem;
    border-radius: 4px;
    background: rgba(2, 37, 95, 0.92);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(2, 37, 95, 0.24);
}

.hero-brand-badge img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hero-brand-badge strong,
.hero-brand-badge span,
.hero-brand-badge small {
    display: block;
    color: #ffffff;
    line-height: 1;
}

.hero-brand-badge strong {
    font-size: 1.55rem;
    letter-spacing: 0.04em;
}

.hero-brand-badge span {
    margin-top: 0.18rem;
    font-size: 1.05rem;
}

.hero-brand-badge small {
    margin-top: 0.6rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-load-section {
    position: relative;
    z-index: 3;
    margin-top: -28px;
    background: #ffffff;
}

.home-load-card {
    overflow: hidden;
    padding: 1.1rem 1.25rem 1.25rem;
    border: 1px solid rgba(2, 37, 95, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(2, 37, 95, 0.12);
}

.home-load-card--trucks {
    margin-top: 1.25rem;
}

.home-load-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.home-load-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.35rem;
    text-transform: uppercase;
    color: var(--primary);
}

.home-load-head h2 i {
    color: var(--secondary);
}

.home-load-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.5rem 0.95rem;
    border: 1px solid rgba(11, 165, 75, 0.45);
    border-radius: 6px;
    color: var(--secondary-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.home-load-view:hover,
.home-load-view:focus {
    background: var(--secondary);
    color: #ffffff;
}

.home-load-table {
    min-width: 980px;
    font-size: 0.9rem;
}

.home-load-card .table-responsive {
    max-height: 320px;
    overflow: auto;
}

.home-load-card .table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.home-load-card .table-responsive::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(2, 37, 95, 0.22);
}

.home-load-card .table-responsive::-webkit-scrollbar-track {
    background: rgba(2, 37, 95, 0.06);
}

.home-load-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0.8rem 1rem;
    background: var(--primary);
    color: #ffffff;
    border: 0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-load-table thead th:first-child {
    border-top-left-radius: 4px;
}

.home-load-table thead th:last-child {
    border-top-right-radius: 4px;
}

.home-load-table tbody td {
    padding: 1rem;
    border-color: rgba(2, 37, 95, 0.08);
    color: var(--text);
    vertical-align: middle;
}

.home-load-location,
.home-load-vehicle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    white-space: nowrap;
}

.home-load-location i {
    color: var(--secondary);
    font-size: 0.82rem;
}

.home-load-vehicle i {
    color: var(--primary);
    font-size: 1.15rem;
}

.home-load-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--soft);
    color: var(--secondary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.home-load-price {
    color: var(--secondary-dark) !important;
    font-weight: 800;
    white-space: nowrap;
}

.home-load-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.home-load-book:hover,
.home-load-book:focus {
    background: var(--secondary-dark);
    color: #ffffff;
}

.home-load-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    background: #e4f6ec;
    color: var(--secondary-dark);
    font-weight: 600;
    text-align: center;
}

.home-load-note i {
    font-size: 1.25rem;
}

.home-services-strip {
    padding: 1.4rem 0 1.6rem;
    background: #ffffff;
}

.home-service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    min-height: 96px;
    padding: 1rem;
    border: 1px solid rgba(2, 37, 95, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(2, 37, 95, 0.07);
}

.home-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 1.35rem;
    flex: 0 0 56px;
}

.home-service-icon--primary {
    background: var(--primary);
}

.home-service-card h3 {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
}

.home-service-card p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.home-stats-band {
    background: linear-gradient(135deg, #02255f 0%, #063674 100%);
    color: #ffffff;
}

.home-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 112px;
    padding: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.home-stats-band .col-6:last-child .home-stat,
.home-stats-band .col-lg-3:last-child .home-stat {
    border-right: 0;
}

.home-stat i {
    color: var(--secondary);
    font-size: 2.3rem;
}

.home-stat strong,
.home-stat span {
    display: block;
    color: #ffffff;
    line-height: 1.1;
}

.home-stat strong {
    color: var(--secondary);
    font-size: 2.1rem;
    font-weight: 800;
}

.home-stat span {
    margin-top: 0.25rem;
    font-weight: 700;
}

/* ── Partner / Register Truck CTA Band ─────────────────────── */
.partner-cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #075a2b 0%, #0ba54b 50%, #116834 100%);
    padding: 90px 0;
    isolation: isolate;
}

.partner-cta-wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 54px;
    pointer-events: none;
    z-index: 2;
}

.partner-cta-wave:not(.partner-cta-wave--bottom) {
    top: -1px;
}

.partner-cta-wave--bottom {
    bottom: -1px;
}

/* Floating background orbs */
.pcta-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: -1;
    animation: pctaOrbFloat 12s ease-in-out infinite alternate;
}

.pcta-orb--1 {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.pcta-orb--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: 5%;
    animation-delay: 2s;
    background: rgba(210, 255, 82, 0.06);
}

.pcta-orb--3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 45%;
    animation-delay: 4s;
}

@keyframes pctaOrbFloat {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    100% {
        transform: translateY(-25px) scale(1.08) rotate(15deg);
    }
}

/* Inner layout */
.pcta-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

/* Left Content */
.pcta-left {
    display: block;
    flex: 1 1 500px;
}

.pcta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pcta-tag i {
    font-size: 0.5rem;
    color: #d2ff52;
}

.pcta-title {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.pcta-title span {
    color: #d2ff52;
}

.pcta-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    max-width: 52ch;
}

.pcta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.pcta-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pcta-benefits i {
    color: #d2ff52;
    font-size: 0.95rem;
}

/* Right content (CTA Card) */
.pcta-right {
    flex: 0 0 380px;
    max-width: 100%;
}

.pcta-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 36px 30px;
    border-radius: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pcta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.pcta-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pcta-card-label {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.pcta-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 28ch;
    line-height: 1.45;
}

.pcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: #ffffff;
    color: #075a2b;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 99px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.pcta-btn:hover,
.pcta-btn:focus {
    background: #d2ff52;
    color: #053b1b;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(210, 255, 82, 0.3);
}

.pcta-btn-arrow {
    transition: transform 0.25s ease;
}

.pcta-btn:hover .pcta-btn-arrow {
    transform: translateX(5px);
}

.pcta-card-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 16px 0 0 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.pcta-card-note i {
    color: #d2ff52;
}



.booking-card {
    position: relative;
    z-index: 1;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid var(--primary);
    border-radius: 6px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.booking-card-head {
    padding: 0.95rem 1.2rem;
    background: var(--primary);
    color: #ffffff;
}

.booking-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.booking-card-body {
    padding: 1.3rem 1.25rem 1.4rem;
}

.booking-card .form-control,
.booking-card .form-select {
    min-height: 46px;
    border-color: #d8dee6;
    border-radius: 0.3rem;
    font-size: 0.95rem;
}

.booking-card .form-control::placeholder {
    color: #8a94a6;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: rgba(11, 165, 75, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(11, 165, 75, 0.14);
}

.booking-card .form-check-label {
    font-weight: 500;
}

.phone-group .phone-code {
    max-width: 90px;
    flex: 0 0 90px;
}

.load-form {
    display: none;
}

.load-form.is-active {
    display: block;
}

.js-validate.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    background-image: none;
}

.invalid-feedback {
    display: none;
    font-size: 0.82rem;
}

.js-validate.is-invalid+.invalid-feedback,
.phone-group .is-invalid~.invalid-feedback {
    display: block;
}

.stats-section {
    background: #ffffff;
}

.stats_card {
    display: flex;
    align-items: stretch;
    min-height: 92px;
    background: #ffffff;
    border: 1px solid #cfd5de;
    overflow: hidden;
    border-radius: 6px;
}

.stats_icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    min-width: 104px;
    background: var(--secondary);
    color: #ffffff;
}

.stats_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.35rem;
    line-height: 1;
}

.stats_content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    text-align: center;
}

.stats_value {
    font-size: 2.05rem;
    font-weight: 500;
    line-height: 1;
    color: var(--primary);
}

.stats_label {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--text);
}

/* ── How It Works / Process Section ────────────────────────── */
.process-section {
    background: #ffffff;
    position: relative;
}

.process-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 8px;
}

.process-main-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.process-main-title span {
    color: var(--secondary);
}

.process-subtitle {
    font-size: 1.05rem;
    max-width: 60ch;
    margin: 0 auto;
}

/* Tabs */
.process-tabs-wrapper {
    display: flex;
    justify-content: center;
}

.process-tabs {
    display: inline-flex;
    background: var(--surface-soft);
    padding: 6px;
    border-radius: 99px;
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(22, 32, 51, 0.03);
}

.process-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted);
    background: transparent;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    transition: var(--transition);
}

.process-tab-btn i {
    font-size: 1rem;
}

.process-tab-btn:hover {
    color: var(--primary);
}

.process-tab-btn.active {
    background: #ffffff;
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(11, 165, 75, 0.12);
}

/* Tab content visibility */
.process-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-tab-content.active {
    display: block;
    opacity: 1;
}

/* Process Cards */
.process-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.06);
    padding: 40px 24px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(22, 32, 51, 0.02);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 165, 75, 0.2);
    box-shadow: 0 20px 40px rgba(11, 165, 75, 0.08);
}

.process-card--transporter:hover {
    border-color: rgba(2, 37, 95, 0.2);
    box-shadow: 0 20px 40px rgba(2, 37, 95, 0.08);
}

.process-step-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(22, 32, 51, 0.06);
    line-height: 1;
    font-family: monospace;
}

.process-card:hover .process-step-badge {
    color: rgba(11, 165, 75, 0.15);
}

.process-card--transporter:hover .process-step-badge {
    color: rgba(2, 37, 95, 0.15);
}

.process-card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.process-card--transporter .process-card-icon-wrap {
    background: #eef4f7;
    color: var(--primary);
}

.process-card:hover .process-card-icon-wrap {
    transform: scale(1.1);
}

.process-step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.process-step-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}


.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.footer-logo img {
    width: 200px;
}




.why-choose-section {
    background: #ffffff;
}

.why-choose-subtitle {
    margin-top: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f2937;
}

.comparison-table-wrap {
    border-radius: 20px;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 20px 50px rgba(22, 32, 51, 0.05);
    background: #ffffff;
    overflow: hidden;
}

.comparison-table {
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(22, 32, 51, 0.08);
    margin-bottom: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-color: rgba(22, 32, 51, 0.08);
    vertical-align: middle;
}

.comparison-table thead th {
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    background: #ffffff;
    border-bottom: 2px solid rgba(22, 32, 51, 0.08);
    color: var(--primary);
}

.comparison-head-feature {
    width: 56%;
    text-align: left;
}

.comparison-head-brand {
    color: var(--secondary-dark) !important;
    background: rgba(11, 165, 75, 0.04) !important;
}

.comparison-head-other {
    color: var(--primary) !important;
}

.comparison-table tbody td:first-child {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary);
    background: #ffffff !important;
}

.comparison-table tbody td:nth-child(2) {
    background: rgba(11, 165, 75, 0.02) !important;
    border-left: 1px solid rgba(11, 165, 75, 0.06);
    border-right: 1px solid rgba(11, 165, 75, 0.06);
}

.comparison-table tbody td:not(:first-child) {
    width: 22%;
    text-align: center;
    background: #ffffff;
}

.comparison-table tbody tr:hover {
    background-color: rgba(11, 165, 75, 0.01) !important;
}

.comparison-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.comparison-mark--yes {
    background: rgba(11, 165, 75, 0.1);
    color: var(--secondary-dark);
    border: 1px solid rgba(11, 165, 75, 0.2);
}

.comparison-mark--no {
    background: rgba(105, 117, 134, 0.08);
    color: var(--muted);
    border: 1px solid rgba(105, 117, 134, 0.15);
}



.site-footer {
    margin-top: 0;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-main {
    background: #ffffff;
}

.footer-brand-box,
.footer-widget {
    height: 100%;
}

.footer-brand-mark {
    width: 54px;
    height: 54px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-text strong {
    font-size: 1.2rem;
    color: var(--text);
}

.footer-brand-text small {
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-about {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--muted);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    background: #ffffff;
    color: var(--secondary);
}

.footer-social-link:hover,
.footer-social-link:focus {
    border-color: rgba(11, 165, 75, 0.4);
    background: var(--soft);
    color: var(--primary);
}

.footer-widget-title {
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
}

.footer-links li+li,
.footer-contact li+li {
    margin-top: 12px;
}

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.97rem;
}

.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--primary);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-dark);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 0.97rem;
}

.footer-contact i {
    margin-top: 4px;
    color: var(--primary);
}

.footer-contact a:hover,
.footer-contact a:focus {
    color: var(--primary-dark);
}

.footer-copyright {
    background: var(--secondary);
}

.footer-copyright-text {
    color: #ffffff;
    font-size: 0.92rem;
}

.footer-copyright-text a {
    color: #ffffff;
    text-decoration: underline;
}

.skydreamix-link {
    font-weight: 600;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    transition: all 0.25s ease;
}

.skydreamix-link:hover,
.skydreamix-link:focus {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    opacity: 0.9;
}


.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(11, 165, 75, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(2, 37, 95, 0.12), transparent 38%);
    pointer-events: none;
}

.about-page-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(2, 37, 95, 0.08);
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.about-page-title {
    margin-top: 1rem;
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    line-height: 1.05;
    max-width: 12ch;
}

.about-page-text {
    max-width: 56ch;
    margin-top: 1.25rem;
}

.about-page-btn-secondary {
    border-color: rgba(2, 37, 95, 0.18);
    background: #ffffff;
    color: var(--secondary);
}

.about-page-btn-secondary:hover,
.about-page-btn-secondary:focus {
    border-color: rgba(2, 37, 95, 0.35);
    background: rgba(2, 37, 95, 0.06);
    color: var(--secondary);
}

.about-hero-panel {
    position: relative;
}

.about-hero-card {
    border: 1px solid rgba(22, 32, 51, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.about-hero-card--primary {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #011a43 100%);
    color: #ffffff;
}

.about-hero-card--primary h2,
.about-hero-card--primary p {
    color: #ffffff;
}

.about-hero-card--mini {
    padding: 1.4rem;
}

.about-hero-card--mini h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.about-hero-card--mini p,
.about-hero-card--primary p {
    margin-top: 0.75rem;
    line-height: 1.7;
}

.about-hero-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 1.35rem;
}

.about-hero-card--mini .about-hero-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    background: var(--soft);
    color: var(--primary);
}

.about-story-visual {
    position: relative;
    padding: 1.5rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.about-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.about-story-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--primary);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.about-story-badge p {
    color: var(--text);
    font-weight: 600;
}

.about-story-tile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.9rem;
    min-height: 145px;
    padding: 1.3rem;
    border-radius: 22px;
    border: 1px solid rgba(22, 32, 51, 0.08);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.about-story-tile i {
    font-size: 1.85rem;
    color: var(--secondary);
}

.about-story-tile strong {
    font-size: 1rem;
    color: var(--text);
}

.about-story-tile--solid {
    background: linear-gradient(135deg, #eaf8f0 0%, #d7f2e2 100%);
}

.about-story-tile--accent {
    background: linear-gradient(135deg, #eef3fb 0%, #dce7f7 100%);
}

.about-story-copy+.about-story-copy {
    margin-top: 1rem;
}

.about-point {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.about-point-icon,
.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.about-point h3,
.about-value-card h3 {
    font-size: 1.12rem;
    margin-bottom: 0.45rem;
}

.about-point p,
.about-value-card p {
    font-size: 0.96rem;
    line-height: 1.7;
}

.about-values {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 18%, rgba(255, 255, 255, 1) 100%);
}

.about-value-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.about-value-icon {
    margin-bottom: 1rem;
}

.about-purpose-wrap {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #011a43 0%, var(--primary) 100%);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.15);
}

.about-purpose-wrap .about-news-title,
.about-purpose-wrap .section_text,
.about-purpose-quote p,
.about-purpose-quote i {
    color: #ffffff;
}

.about-purpose-wrap .about-news-title span {
    color: #b9f4cf;
}

.about-purpose-quote {
    height: 100%;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.about-purpose-quote i {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.about-purpose-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
}



.inner-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.76) 20%, rgba(255, 255, 255, 1) 100%);
}

.inner-page-hero {
    max-width: 760px;
    margin: 0 auto;
}

.inner-page-text {
    margin-top: 1rem;
}

.inner-page-card {
    padding: 2rem;
    border: 1px solid rgba(22, 32, 51, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.inner-page-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}

.policy-content {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.policy-content h2,
.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.policy-content p+p,
.policy-content ul+p,
.policy-content ol+p {
    margin-top: 1rem;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.25rem;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid rgba(2, 37, 95, 0.1);
    border-radius: 8px;
}

.faq-accordion .accordion-item+.accordion-item {
    margin-top: 0.9rem;
}

.faq-accordion .accordion-button {
    color: var(--primary);
    font-weight: 700;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--soft);
    color: var(--primary);
}


.services-hero {
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(11, 165, 75, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(2, 37, 95, 0.12), transparent 34%);
    pointer-events: none;
}

.services-page-title {
    margin-top: 1rem;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.05;
    max-width: 12ch;
}

.services-hero-text {
    max-width: 58ch;
    margin-top: 1.25rem;
}

.services-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.services-menu-card {
    overflow: hidden;
    border: 1px solid rgba(22, 32, 51, 0.1);
    border-radius: 20px;
    background: var(--primary);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

.services-menu-block {
    height: 100%;
    padding: 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--primary);
    color: #ffffff;
}

.services-menu-block--accent {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.services-menu-block--soft {
    background: linear-gradient(135deg, #063674 0%, var(--primary) 100%);
}

.services-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.15rem;
}

.services-menu-block h2 {
    margin-top: 1rem;
    font-size: 1.35rem;
    color: #ffffff;
}

.services-menu-block p {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.service-detail-card {
    padding: 1.8rem;
    border: 1px solid rgba(22, 32, 51, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.service-detail-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(11, 165, 75, 0.12);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 600;
}

.service-detail-badge--blue {
    background: rgba(2, 37, 95, 0.1);
    color: var(--secondary);
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 68px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: #f7f9fc;
    border: 1px solid rgba(22, 32, 51, 0.06);
}

.service-list-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

.service-list-item span {
    color: var(--text);
    font-weight: 500;
    line-height: 1.45;
}

.service-type-card {
    height: 100%;
    padding: 1.8rem;
    border-radius: 28px;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.service-type-card--full {
    background: linear-gradient(180deg, #ffffff 0%, #eaf8f0 100%);
}

.service-type-card--part {
    background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
}

.service-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #ffffff;
    color: var(--secondary);
    font-size: 1.4rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.service-type-card h3 {
    margin-top: 1.2rem;
    font-size: 1.55rem;
}

.service-type-card h3 span {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.service-type-card p {
    margin-top: 1rem;
    line-height: 1.75;
}

.service-type-points {
    margin-top: 1.2rem;
}

.service-type-points li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text);
    font-weight: 500;
}

.service-type-points li+li {
    margin-top: 0.8rem;
}

.service-type-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
}


.services-action-btn {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
}

.services-action-btn:hover,
.services-action-btn:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.booking-card--page {
    max-width: 100%;
}

.load-create-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 1) 100%);
}

.load-copy-block {
    display: none;
}

.load-copy-block.is-active {
    display: block;
}

.truck-post-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 1) 100%);
}

.js-truck-group-feedback {
    display: none;
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: #dc3545;
}

.truck-submit-btn {
    min-width: 132px;
}




.truck-form-card.booking-card {
    max-width: 100%;
}

.truck-form-card-head {
    background: var(--primary);
    color: #ffffff;
}

.truck-form-card-body {
    padding: 1.3rem 1.25rem 1.4rem;
}


.contact-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.84) 18%, rgba(255, 255, 255, 1) 100%);
}

.contact-form-wrap.booking-card {
    max-width: 100%;
    border-radius: 0;
    border-right: 0;
    box-shadow: none;
}

.contact-form-shell {
    padding: 1.8rem;
    background: #ffffff;
}

.contact-section-title,
.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-section-title {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(11, 165, 75, 0.35);
    color: var(--secondary);
}

.contact-info-panel {
    height: 100%;
    padding: 1.8rem;
    background: linear-gradient(180deg, var(--primary) 0%, #011a43 100%);
    color: #ffffff;
    border-radius: 6px;
}

.contact-info-title {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    background: #f3f4f6;
}

.contact-message-field {
    min-height: 160px;
    resize: vertical;
}

.contact-submit-btn {
    min-width: 168px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
}

.contact-info-box ul,
.contact-highlight-card ul {
    margin-bottom: 0;
}

.contact-info-box-icon,
.contact-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #0b2942;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-box h3,
.contact-highlight-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

.contact-info-box p,
.contact-highlight-card p {
    color: var(--muted);
    line-height: 1.75;
}

.contact-highlights {
    background: #ffffff;
}

.contact-highlight-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.2rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.contact-highlight-icon {
    position: relative;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    box-shadow: 10px -8px 0 rgba(11, 165, 75, 0.18);
}

/* Live Availability Tables */
.live-availability-section {
    background: #f8f9fa;
}

.live-table-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.live-table-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.live-table {
    font-size: 0.9rem;
}

.live-table thead th {
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-bottom-width: 1px;
}

.live-table {
    font-size: 0.9rem;
}

.live-table thead th {
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-bottom-width: 1px;
}

.live-table td {
    vertical-align: middle;
}

.live-table-card .table-responsive {
    max-height: 350px;
    overflow-y: auto;
}

/* Find A Vehicle Section Styles */
.find-vehicle-section {
    padding: var(--section-space) 0;
    background: #ffffff;
}

.find-vehicle-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #162033;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.find-vehicle-subtitle {
    font-size: 1rem;
    color: #697586;
    margin-top: 8px;
    margin-bottom: 32px;
}

/* Category Switcher Tabs */
#truck-tabs .nav-link {
    background: transparent;
    color: #697586;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 20px !important;
}

#truck-tabs .nav-link.active {
    background: #02255f !important;
    color: #ffffff !important;
    border-color: #02255f;
    box-shadow: 0 4px 12px rgba(2, 37, 95, 0.15);
}

#truck-tabs .nav-link:hover:not(.active) {
    color: #02255f;
    background: rgba(2, 37, 95, 0.05);
}

/* Sidebar Menu Items */
.explorer-menu-item {
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.05);
    border-left: 4px solid transparent;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
}

.explorer-menu-item:hover {
    transform: translateX(4px);
    border-color: rgba(2, 37, 95, 0.1);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.03);
}

.explorer-menu-item.active {
    background: #f4f7fc;
    border-color: rgba(2, 37, 95, 0.08);
    border-left: 4px solid #0ba54b;
    box-shadow: 0 10px 25px rgba(2, 37, 95, 0.04);
}

.explorer-menu-item.active .explorer-item-name {
    color: #02255f;
}

.explorer-item-thumbnail {
    width: 60px;
    height: 40px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.explorer-item-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #162033;
    margin-bottom: 2px;
}

.explorer-item-capacity {
    font-size: 0.8rem;
    color: #697586;
    font-weight: 600;
}

/* Featured Explorer Panel (Right Side) */
.explorer-display-panel {
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.06);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: visible;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Stunning Floating Background Elements */
.explorer-stage {
    position: relative;
    height: 310px;
    background: #f8fafc;
    border: 1px solid rgba(22, 32, 51, 0.04);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-bottom: 30px;
}

.explorer-stage-glow {
    position: absolute;
    width: 420px;
    height: 140px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.22; /* Vibrant themed aura behind and beside the truck */
    z-index: 1; /* Placed in the background */
    pointer-events: none;
    transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide the background circle/rings completely to prevent overlapping the truck image */
.explorer-stage-circle {
    display: none !important;
}

.explorer-stage-truck {
    max-height: 230px;
    width: auto;
    object-fit: contain;
    z-index: 5; /* Bring truck to foreground */
    mix-blend-mode: multiply;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.explorer-stage-shadow {
    position: absolute;
    bottom: 5px;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(2, 37, 95, 0.14) 0%, rgba(2, 37, 95, 0) 75%);
    z-index: 2; /* Positioned between background glow and truck */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Floating Specifications Badges */
.floating-spec-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 32, 51, 0.08);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #162033;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    z-index: 4;
}

.floating-spec-badge--1 {
    top: 20px;
    left: 20px;
    animation: floatBadge1 3s ease-in-out infinite alternate;
}

.floating-spec-badge--2 {
    bottom: 30px;
    right: 20px;
    animation: floatBadge2 3.5s ease-in-out infinite alternate;
}

@keyframes floatBadge1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes floatBadge2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(8px);
    }
}

/* Spring transition classes */
.explorer-stage-truck.slide-out {
    transform: translateX(-150px) scale(0.8);
    opacity: 0;
}

.explorer-stage-truck.slide-in {
    transform: translateX(150px) scale(0.8);
    opacity: 0;
}

/* Detailed Information Area */
.explorer-info-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #162033;
    margin-bottom: 12px;
}

.explorer-info-desc {
    font-size: 0.95rem;
    color: #697586;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Horizontal Technical Specifications */
.explorer-specs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(22, 32, 51, 0.06);
    border-bottom: 1px solid rgba(22, 32, 51, 0.06);
    padding: 20px 0;
}

.explorer-spec-box {
    text-align: left;
}

.explorer-spec-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #697586;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.explorer-spec-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #162033;
}

/* Action Area */
.explorer-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.explorer-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #697586;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.explorer-price-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: #02255f;
}

.explorer-btn-book {
    background: #0ba54b;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 99px;
    padding: 14px 40px;
    font-size: 1rem;
    box-shadow: 0 10px 24px rgba(11, 165, 75, 0.22);
    transition: all 0.3s ease;
    cursor: pointer;
}

.explorer-btn-book:hover {
    background: #07873c;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(11, 165, 75, 0.32);
}

/* Glowing Pulsing Status Dot for Active Vehicles */
.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #0ba54b;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.6s infinite ease-in-out;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(11, 165, 75, 0.6);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(11, 165, 75, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(11, 165, 75, 0);
    }
}

/* ── Preloader CSS Styling ─────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.preloader--fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.preloader-origami-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.origami-bird {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.bird-part {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawBirdPart 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Specific colored fills fade-in after outline is drawn */
.part-beak {
    animation-delay: 0.1s;
    --fill-color: rgba(0, 180, 216, 0.15); /* Light blue */
}
.part-head {
    animation-delay: 0.2s;
    --fill-color: rgba(0, 180, 216, 0.7); /* Blue */
}
.part-body {
    animation-delay: 0.3s;
    --fill-color: rgba(11, 165, 75, 0.7); /* Green */
}
.part-back {
    animation-delay: 0.4s;
    --fill-color: rgba(11, 165, 75, 0.4); /* Soft green */
}
.part-tail {
    animation-delay: 0.5s;
    --fill-color: rgba(255, 159, 28, 0.7); /* Orange */
}
.part-wing-top {
    animation-delay: 0.35s;
    --fill-color: rgba(255, 59, 96, 0.75); /* Pink */
    transform-origin: 95px 95px;
    animation: 
        drawBirdPart 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards,
        wingFlapTop 0.8s ease-in-out infinite alternate 2.2s;
}
.part-wing-bottom {
    animation-delay: 0.45s;
    --fill-color: rgba(255, 159, 28, 0.5); /* Soft orange */
    transform-origin: 90px 115px;
    animation: 
        drawBirdPart 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards,
        wingFlapBottom 0.8s ease-in-out infinite alternate 2.2s;
}

@keyframes drawBirdPart {
    0% {
        stroke-dashoffset: 400;
        fill: rgba(255, 255, 255, 0);
    }
    70% {
        stroke-dashoffset: 0;
        fill: rgba(255, 255, 255, 0);
        stroke: var(--primary);
    }
    100% {
        stroke-dashoffset: 0;
        fill: var(--fill-color);
        stroke: transparent;
    }
}

@keyframes wingFlapTop {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-8deg) skewX(-5deg); }
}

@keyframes wingFlapBottom {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg) skewX(5deg); }
}

/* Brand Text Info */
.preloader-brand-info {
    text-align: center;
}

.preloader-brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.preloader-brand-line {
    width: 40px;
    height: 2px;
    background: var(--secondary);
    margin: 0 auto 10px auto;
    border-radius: 2px;
}

.preloader-brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.2em;
    margin: 0;
}

/* ── Modern Advanced Form UI/UX Styling ────────────────────────── */
.booking-card--page {
    border: none;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.booking-card-head {
    background: linear-gradient(135deg, #02255f 0%, #0c397f 100%);
    padding: 28px 36px;
    border-bottom: none;
    position: relative;
}

.booking-card-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0ba54b, #22c55e);
}

.booking-card-title {
    color: #ffffff;
    font-weight: 850;
    font-size: 1.45rem;
    letter-spacing: 0.5px;
}

.booking-card-body {
    padding: 36px;
}

.form-control,
.form-select,
.custom-multiselect-trigger {
    height: auto;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a202c;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.25s ease-in-out;
}

.form-control::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.form-control:focus,
.form-select:focus,
.custom-multiselect-trigger:focus,
.custom-multiselect-trigger.is-focused {
    background-color: #ffffff;
    border-color: #0ba54b;
    box-shadow: 0 0 0 4px rgba(11, 165, 75, 0.12);
    color: #1a202c;
    outline: none;
}

/* Form Check / Radios */
.form-check-input {
    width: 1.15em;
    height: 1.15em;
    margin-top: 0.2em;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background-color: #0ba54b;
    border-color: #0ba54b;
    box-shadow: 0 0 0 4px rgba(11, 165, 75, 0.12);
}

.form-check-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    user-select: none;
    cursor: pointer;
}

/* Multi-select styling */
.custom-multiselect-container {
    position: relative;
    width: 100%;
}

.custom-multiselect-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.custom-multiselect-trigger i {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
    color: #94a3b8;
}

.custom-multiselect-container.is-open .custom-multiselect-trigger i {
    transform: rotate(180deg);
}

.custom-multiselect-container.is-open .custom-multiselect-trigger {
    background-color: #ffffff;
    border-color: #0ba54b;
    box-shadow: 0 0 0 4px rgba(11, 165, 75, 0.12);
}

.custom-multiselect-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    z-index: 999;
    display: none;
    padding: 8px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

.custom-multiselect-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-multiselect-dropdown::-webkit-scrollbar-track {
    background: #f8fafc;
}

.custom-multiselect-dropdown::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 3px;
}

.custom-multiselect-container.is-open .custom-multiselect-dropdown {
    display: block;
    animation: slideDownFade 0.25s ease-out;
}

.custom-multiselect-option {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    transition: background 0.2s ease, color 0.2s ease;
    margin-bottom: 2px;
}

.custom-multiselect-option:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.custom-multiselect-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #0ba54b;
    cursor: pointer;
}

.js-selected-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90%;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Input Groups (Weight in MT) */
.input-group-text {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0 16px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.input-group > .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.phone-group > .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.phone-group > .phone-code {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

/* Invalid Feedback */
.js-validate.is-invalid,
.custom-multiselect-trigger.is-invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
}

.js-validate.is-invalid:focus,
.custom-multiselect-trigger.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    padding-left: 4px;
}

.js-validate.is-invalid ~ .invalid-feedback,
.custom-multiselect-trigger.is-invalid ~ .invalid-feedback,
.phone-group .is-invalid ~ .invalid-feedback {
    display: block;
}

/* ── Hide Input Number Spinner Arrows ──────────────────────────── */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield !important;
}

/* ── Stylized Expected Price Card ──────────────────────────────── */
.price-stylized-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
}

.price-stylized-card:hover {
    border-color: #94a3b8;
}

.price-stylized-card:focus-within {
    border-color: #0ba54b;
    border-style: solid;
    box-shadow: 0 10px 30px rgba(11, 165, 75, 0.08);
    background: #ffffff;
}

.price-card-label {
    letter-spacing: 0.5px;
    color: #64748b;
}

.price-display-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.currency-symbol {
    color: #0ba54b;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
    user-select: none;
}

.price-styled-input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    width: auto;
    min-width: 1.5rem;
    text-align: center;
    color: #0ba54b !important;
    font-weight: 800;
    font-size: 2.2rem !important;
    padding: 0 !important;
    height: auto !important;
    caret-color: #0ba54b;
}

.price-styled-input::placeholder {
    color: #cbd5e1;
}

/* ── Aadhar Upload Design ──────────────────────────────────────── */
.aadhar-upload-label {
    border: 2px dashed #cbd5e1;
    background-color: #f8fafc;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.aadhar-upload-label:hover {
    border-color: #0ba54b !important;
    background-color: #f0fdf4 !important;
}

.aadhar-upload-label.has-file {
    border-color: #0ba54b !important;
    border-style: solid !important;
    background-color: #f0fdf4 !important;
}

.aadhar-upload-label.is-invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}