/* Hexavault Homepage Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Official Brand Colors */
    --hv-blue: #0359b0;
    --hv-blue-light: #3a7bc8;
    --hv-blue-pale: #e8f1f9;
    
    --hv-navy: #002039;
    --hv-navy-light: #0a3a5c;
    
    --hv-orange: #f48030;
    --hv-orange-hover: #e06a1a;
    --hv-orange-light: #f9a060;
    
    /* Neutral Palette */
    --hv-white: #ffffff;
    --hv-off-white: #f7f7f7;
    --hv-light-gray: #e8e8e8;
    --hv-medium-gray: #6e6e6e;
    --hv-dark-gray: #333333;
    --hv-black: #1a1a1a;
    
    /* Spacing */
    --section-padding: 80px;
    --container-max: 1320px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.hv-theme {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--hv-dark-gray);
    line-height: 1.6;
    background: var(--hv-white);
    overflow-x: hidden;
}

/* Link colors */
a {
    color: var(--hv-blue);
}

a:hover {
    color: var(--hv-blue-light);
}

/* Typography */
.hv-heading-xl {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.hv-heading-lg {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
}

.hv-heading-md {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

.hv-text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

.hv-text-sm {
    font-size: 0.875rem;
}

/* ========================================
   TOP BAR
   ======================================== */
.hv-topbar {
    background: var(--hv-off-white);
    padding: 8px 0;
    border-bottom: 1px solid var(--hv-light-gray);
}

.hv-topbar-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hv-topbar-left,
.hv-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hv-topbar a {
    color: var(--hv-dark-gray);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.hv-topbar a:hover {
    color: var(--hv-orange);
    text-decoration: underline;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.hv-header {
    background: var(--hv-white);
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hv-header-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hv-logo {
    height: 48px;
    width: auto;
}

.hv-nav {
    display: none;
}

.hv-nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.hv-nav-link {
    color: var(--hv-dark-gray);
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.hv-nav-link:hover {
    background: var(--hv-off-white);
    color: var(--hv-orange);
}

.hv-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hv-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--hv-dark-gray);
}

.hv-login-btn {
    background: var(--hv-orange);
    color: var(--hv-white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: none;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.hv-login-btn:hover {
    background: var(--hv-orange-hover);
    transform: translateY(-1px);
}

/* Dark Header Variant - for pages with dark backgrounds */
.hv-header-dark {
    background: var(--hv-navy);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hv-header-dark .hv-nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.hv-header-dark .hv-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--hv-orange);
}

.hv-header-dark .hv-mobile-toggle span {
    background: var(--hv-white);
}

.hv-header-dark .hv-login-btn {
    background: var(--hv-orange);
    color: var(--hv-white);
}

/* Dark Topbar Variant */
.hv-topbar-dark {
    background: rgba(0, 20, 40, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hv-topbar-dark a {
    color: rgba(255, 255, 255, 0.7);
}

.hv-topbar-dark a:hover {
    color: var(--hv-orange);
}

.hv-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hv-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--hv-dark-gray);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hv-hero {
    /* background: linear-gradient(135deg, var(--hv-navy) 0%, var(--hv-navy-light) 100%, var(--hv-blue) 100%); */
    background: linear-gradient(135deg, var(--hv-navy) 0%, #0a3a5c80 100%, var(--hv-blue) 100%);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg/bg-truck.jpg') center/cover no-repeat;
    opacity: 0.02;
    pointer-events: none;
}

.hv-hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hv-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 80px;
}

/* Hero Tabs */
.hv-hero-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hv-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.75);
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hv-tab-btn:hover {
    color: var(--hv-white);
}

.hv-tab-btn.active {
    color: var(--hv-white);
    font-weight: 600;
}

.hv-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hv-orange);
}

.hv-tab-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.hv-tab-btn.active .hv-tab-arrow {
    transform: rotate(180deg);
}

.hv-hero-left-title {
    color: var(--hv-white);
    margin-bottom: 30px;
}

/* Tracking Form */
.hv-tracking-form {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    max-width: 700px;
}

.hv-tracking-input {
    flex: 1;
    min-width: 280px;
    padding: 18px 20px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--hv-white);
}

.hv-tracking-input:focus {
    border-color: var(--hv-orange);
}

.hv-tracking-input.is-invalid {
    border-color: #c75a5a;
    background-color: #fdf5f5;
}

.hv-track-btn {
    background: var(--hv-orange);
    color: var(--hv-white);
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
}

.hv-track-btn:hover {
    background: var(--hv-orange-hover);
}

.hv-help-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    margin-left: 20px;
    padding: 18px 0;
}

.hv-help-link:hover {
    color: var(--hv-white);
    text-decoration: underline;
}

.hv-form-help {
    margin-top: 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.hv-form-help a {
    color: var(--hv-white);
    text-decoration: underline;
}

.hv-error-message {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(199, 90, 90, 0.2);
    border-left: 4px solid #c75a5a;
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
}

/* Hero Image */
.hv-hero-image {
    display: none;
    justify-content: flex-end;
    align-items: flex-end;
}

.hv-hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
}

/* ========================================
   INFO CARDS SECTION
   ======================================== */
.hv-info-section {
    padding: 80px 0;
    background: var(--hv-white);
    position: relative;
}

.hv-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.hv-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.hv-section-header h2 {
    margin-bottom: 16px;
    color: var(--hv-navy);
}

.hv-accent-bar {
    width: 60px;
    height: 4px;
    background: var(--hv-orange);
    margin: 0 auto 20px;
}

.hv-section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--hv-medium-gray);
}

/* Info Cards Grid */
.hv-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.hv-info-card {
    background: #FCFAF8;
    border: 1px solid var(--hv-light-gray);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.hv-info-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--hv-orange-hover);
    transform: translateY(-4px);
}

.hv-info-card h3 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--hv-navy);
}

.hv-info-card p {
    color: var(--hv-medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.hv-card-link {
    color: var(--hv-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.hv-card-link:hover {
    text-decoration: underline;
    gap: 10px;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.hv-solutions-section {
    padding: 80px 0;
    background: var(--hv-off-white);
}

.hv-toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.hv-toggle-group {
    display: inline-flex;
    border: 2px solid var(--hv-navy);
    border-radius: 30px;
    overflow: hidden;
}

.hv-toggle-btn {
    padding: 14px 32px;
    border: none;
    background: transparent;
    color: var(--hv-navy);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.hv-toggle-btn.active {
    background: var(--hv-navy);
    color: var(--hv-white);
}

.hv-toggle-btn:hover:not(.active) {
    background: rgba(0, 32, 57, 0.1);
}

/* Solution Cards */
.hv-solution-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hv-solution-card {
    background: var(--hv-white);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.hv-solution-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--hv-orange);
}

.hv-solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--hv-navy);
    line-height: 1.3;
}

.hv-solution-card p {
    color: var(--hv-medium-gray);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.hv-solution-card .hv-card-link {
    margin-top: auto;
}

/* ========================================
   TOOLS SECTION (Icon Grid Cards)
   ======================================== */
.hv-tools-section {
    padding: 80px 0;
    background: var(--hv-white);
}

.hv-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hv-tool-card {
    background: var(--hv-white);
    border: 1px solid var(--hv-light-gray);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hv-tool-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.hv-tool-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.hv-tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hv-tool-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--hv-navy);
    line-height: 1.3;
}

.hv-tool-card p {
    color: var(--hv-medium-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.hv-tool-card .hv-card-link {
    margin-top: auto;
    font-weight: 600;
}

/* ========================================
   FEATURE SECTION WITH IMAGE
   ======================================== */
.hv-feature-section {
    padding: 80px 0;
    background: var(--hv-white);
}

.hv-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.hv-feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hv-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hv-feature-content h2 {
    margin-bottom: 20px;
    color: var(--hv-navy);
}

.hv-feature-content p {
    color: var(--hv-medium-gray);
    margin-bottom: 28px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hv-orange);
    color: var(--hv-white);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 0px;
}

.hv-cta-btn:hover {
    background: var(--hv-orange-hover);
    transform: translateY(-2px);
    color: var(--hv-white);
}

/* ========================================
   PROMO BANNER
   ======================================== */
.hv-promo-banner {
    background: linear-gradient(135deg, var(--hv-blue-light) 0%, var(--hv-blue) 100%);
    padding: 60px 0;
}

.hv-promo-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.hv-promo-content h2 {
    color: var(--hv-white);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.hv-promo-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.hv-promo-content .hv-cta-btn {
    background: var(--hv-orange);
    color: var(--hv-white);
}

.hv-promo-content .hv-cta-btn:hover {
    background: var(--hv-orange-hover);
    color: var(--hv-white);
}

/* ========================================
   SERVICES GRID
   ======================================== */
.hv-services-section {
    padding: 80px 0;
    background: var(--hv-off-white);
}

.hv-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.hv-service-card {
    background: var(--hv-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.hv-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hv-service-card-image {
    height: 220px;
    overflow: hidden;
}

.hv-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hv-service-card:hover .hv-service-card-image img {
    transform: scale(1.05);
}

.hv-service-card-content {
    padding: 28px;
}

.hv-service-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--hv-navy);
}

.hv-service-card-content p {
    color: var(--hv-medium-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   SECTION LABELS
   ======================================== */
.hv-section-label {
    display: inline-block;
    color: var(--hv-orange);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

/* ========================================
   INFO CARD ICONS
   ======================================== */
.hv-info-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--hv-blue) 0%, var(--hv-navy) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--hv-white);
    font-size: 1.5rem;
}

.hv-info-card:hover .hv-info-card-icon {
    background: linear-gradient(135deg, var(--hv-orange) 0%, var(--hv-orange-hover) 100%);
}

/* ========================================
   LOGISTICS SECTION (Numbered Cards)
   ======================================== */
.hv-logistics-section {
    padding: 80px 0;
    background: var(--hv-navy);
    color: var(--hv-white);
}

.hv-logistics-section .hv-section-label {
    color: var(--hv-orange);
}

.hv-logistics-section .hv-heading-lg {
    color: var(--hv-white);
}

.hv-logistics-section .hv-text-lg {
    color: rgba(255, 255, 255, 0.8);
}

.hv-logistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.hv-logistics-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
}

.hv-logistics-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.hv-logistics-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hv-orange);
    line-height: 1;
    flex-shrink: 0;
}

.hv-logistics-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--hv-white);
}

.hv-logistics-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   SHOWCASE SECTION (Compliance Style)
   ======================================== */
.hv-showcase-section {
    padding: 80px 0;
    background: var(--hv-off-white);
}

.hv-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hv-showcase-content {
    padding-right: 20px;
}

.hv-breadcrumb {
    font-size: 0.875rem;
    color: var(--hv-medium-gray);
    margin-bottom: 24px;
}

.hv-breadcrumb a {
    color: var(--hv-medium-gray);
    text-decoration: underline;
}

.hv-breadcrumb a:hover {
    color: var(--hv-blue);
}

.hv-breadcrumb span {
    color: var(--hv-dark-gray);
}

.hv-showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hv-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hv-showcase-text {
    font-size: 1.1rem;
    color: var(--hv-medium-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hv-cta-btn-gold {
    background: #ffc220;
    color: var(--hv-navy);
    border: none;
}

.hv-cta-btn-gold:hover {
    background: #e6ad00;
    color: var(--hv-navy);
}

.hv-showcase-subtext {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--hv-medium-gray);
}

.hv-showcase-subtext a {
    color: var(--hv-blue);
    text-decoration: underline;
}

.hv-showcase-subtext a:hover {
    color: var(--hv-orange);
}

.hv-showcase-image {
    border-radius: 8px;
    overflow: hidden;
}

.hv-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hv-feature-grid-reverse {
    direction: rtl;
}

.hv-feature-grid-reverse > * {
    direction: ltr;
}

/* ========================================
   INSURANCE SECTION
   ======================================== */
.hv-insurance-section {
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, var(--hv-blue) 0%, var(--hv-navy) 100%);
    overflow: hidden;
}

.hv-insurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
}

.hv-insurance-text {
    color: var(--hv-white);
    padding-bottom: 80px;
}

.hv-insurance-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hv-insurance-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom;
}

.hv-insurance-text .hv-section-label {
    color: var(--hv-orange-light);
}

.hv-insurance-text .hv-heading-lg {
    color: var(--hv-white);
    margin-bottom: 16px;
}

.hv-insurance-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ========================================
   CTA BUTTON OUTLINE VARIANT
   ======================================== */
.hv-cta-btn-outline {
    background: transparent;
    border: 2px solid var(--hv-orange);
    color: var(--hv-orange);
}

.hv-cta-btn-outline:hover {
    background: var(--hv-orange);
    color: var(--hv-white);
}

/* ========================================
   ACCORDION / UPDATES SECTION
   ======================================== */
.hv-updates-section {
    padding: 80px 0;
    background: var(--hv-white);
}

.hv-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.hv-accordion-item {
    border: 1px solid var(--hv-light-gray);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.hv-accordion-header {
    width: 100%;
    background: var(--hv-white);
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--hv-dark-gray);
    text-align: left;
    transition: background 0.2s;
    font-family: inherit;
}

.hv-accordion-header:hover {
    background: var(--hv-off-white);
}

.hv-accordion-icon {
    transition: transform 0.3s;
    font-size: 1.25rem;
    color: var(--hv-medium-gray);
}

.hv-accordion-item.active .hv-accordion-icon {
    transform: rotate(180deg);
}

.hv-accordion-content {
    display: none;
    padding: 0 24px 24px;
    color: var(--hv-medium-gray);
    line-height: 1.7;
}

.hv-accordion-item.active .hv-accordion-content {
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.hv-footer {
    background: var(--hv-navy);
    color: var(--hv-white);
    padding: 48px 0 24px;
}

.hv-footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hv-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.hv-footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.hv-footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hv-footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.hv-footer-links a:hover {
    color: var(--hv-white);
}

.hv-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (min-width: 768px) {
    .hv-nav {
        display: block;
    }

    .hv-login-btn{
        display: flex;
    }
    
    .hv-mobile-toggle {
        display: none;
    }
    
    .hv-hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 60px 0 0; /* Remove bottom padding so image can touch bottom */
        min-height: 420px;
    }
    
    .hv-hero-left {
        padding-bottom: 60px;
        align-self: center;
    }
    
    .hv-hero-image {
        display: flex;
        align-self: end;
    }
    
    .hv-hero-image img {
        max-height: 450px;
        margin-bottom: 0; /* Image bottom touches hero bottom */
    }
    
    .hv-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hv-promo-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .hv-hero-inner {
        gap: 60px;
        min-height: 480px;
    }
    
    .hv-hero-image img {
        max-height: 520px;
    }
    
    .hv-tracking-form {
        flex-wrap: nowrap;
    }
}

/* ========================================
   LOCATION FINDER MODAL
   ======================================== */
.hv-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 32, 57, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.hv-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hv-modal {
    background: var(--hv-white);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.hv-modal-overlay.active .hv-modal {
    transform: translateY(0) scale(1);
}

.hv-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--hv-off-white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--hv-medium-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hv-modal-close:hover {
    background: var(--hv-light-gray);
    color: var(--hv-navy);
}

.hv-modal-header {
    padding: 40px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--hv-light-gray);
}

.hv-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--hv-blue) 0%, var(--hv-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--hv-white);
}

.hv-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hv-navy);
    margin-bottom: 8px;
}

.hv-modal-header p {
    color: var(--hv-medium-gray);
    font-size: 0.95rem;
}

.hv-modal-body {
    padding: 32px;
}

.hv-form-group {
    margin-bottom: 20px;
}

.hv-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hv-navy);
    margin-bottom: 8px;
}

.hv-form-group input,
.hv-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--hv-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--hv-navy);
    transition: all 0.2s ease;
    background: var(--hv-white);
}

.hv-form-group input:focus,
.hv-form-group select:focus {
    outline: none;
    border-color: var(--hv-blue);
    box-shadow: 0 0 0 3px rgba(3, 89, 176, 0.1);
}

.hv-form-group input::placeholder {
    color: var(--hv-medium-gray);
}

.hv-cta-btn-full {
    width: 100%;
    justify-content: center;
}

.hv-cta-btn-full i {
    margin-right: 8px;
}

/* Location Result */
.hv-location-result {
    text-align: center;
}

.hv-modal-sm {
    max-width: 400px;
}

.hv-result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--hv-orange) 0%, #e67320 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--hv-white);
}

.hv-result-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.hv-location-result h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hv-navy);
    margin-bottom: 12px;
}

.hv-location-result p {
    color: var(--hv-medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hv-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hv-result-actions .hv-cta-btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.hv-result-actions .hv-cta-btn i {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .hv-topbar-right {
        display: none;
    }
    
    .hv-tracking-input {
        border-radius: 4px;
        margin-bottom: 12px;
        width: 100%;
    }
    
    .hv-track-btn {
        border-radius: 4px;
        width: 100%;
        justify-content: center;
    }
    
    .hv-help-link {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .hv-hero-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Mobile Navigation */
.hv-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hv-white);
    z-index: 1001;
    padding: 80px 24px 24px;
}

.hv-mobile-nav.active {
    display: block;
}

.hv-mobile-nav-list {
    list-style: none;
}

.hv-mobile-nav-list li {
    border-bottom: 1px solid var(--hv-light-gray);
}

.hv-mobile-nav-list a {
    display: block;
    padding: 20px 0;
    color: var(--hv-dark-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.hv-mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--hv-dark-gray);
}

/* Utility Classes */
.hv-text-center {
    text-align: center;
}

.hv-mb-0 {
    margin-bottom: 0 !important;
}

/* List Styles */
.hv-feature-list {
    list-style: none;
    margin: 24px 0;
}

.hv-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--hv-medium-gray);
}

.hv-feature-list li::before {
    content: '✓';
    color: var(--hv-orange);
    font-weight: bold;
    flex-shrink: 0;
}

/* Why Choose Us Section */
.hv-why-section {
    padding: 80px 0;
    background: var(--hv-white);
    color: var(--hv-navy);
}

.hv-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.hv-why-item {
    text-align: center;
    padding: 40px 28px;
    background: var(--hv-white);
    border: 1px solid var(--hv-light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hv-why-item:hover {
    border-color: var(--hv-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hv-why-icon {
    width: 72px;
    height: 72px;
    background: var(--hv-navy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem;
    color: var(--hv-white);
    box-shadow: 0 4px 20px rgba(3, 89, 176, 0.1);
}

.hv-why-item h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hv-navy);
}

.hv-why-item p {
    color: var(--hv-medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   INNER PAGE STYLES
   ======================================== */

/* Page Hero (smaller for inner pages) */
.hv-page-hero {
    /* background: linear-gradient(135deg, var(--hv-navy) 0%, var(--hv-blue) 100%); */
    background: linear-gradient(135deg, var(--hv-navy) 0%, #0a3a5c80 100%, var(--hv-blue) 100%);
    padding: 100px 0 60px;
    color: var(--hv-white);
    text-align: center;
}

.hv-page-hero h1 {
    margin-bottom: 16px;
}

.hv-page-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.hv-content-section {
    padding: 60px 0;
    background: var(--hv-white);
}

.hv-content-card {
    background: var(--hv-white);
    border-radius: 12px;
    padding: 40px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    max-width: 900px;
    margin: 0 auto;
}

.hv-content-card-centered {
    text-align: center;
}

/* Contact Page Styles */
.hv-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.hv-contact-card {
    background: var(--hv-off-white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.hv-contact-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.hv-contact-icon {
    width: 64px;
    height: 64px;
    background: var(--hv-blue);
    color: var(--hv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.hv-contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--hv-navy);
}

.hv-contact-card p {
    color: var(--hv-medium-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.hv-contact-link {
    color: var(--hv-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.hv-contact-link:hover {
    text-decoration: underline;
}

/* Tracking Form Large (for track page) */
.hv-track-form-large {
    max-width: 600px;
    margin: 0 auto;
}

.hv-tracking-form-stacked {
    flex-direction: column;
    gap: 16px;
}

.hv-tracking-form-stacked .hv-tracking-input {
    border-radius: 8px;
    min-width: 100%;
}

.hv-tracking-form-stacked .hv-track-btn {
    border-radius: 8px;
    justify-content: center;
}

/* Quote Form Styles */
.hv-quote-form {
    margin-top: 20px;
}

.hv-quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .hv-quote-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hv-quote-section {
    padding: 24px;
    background: var(--hv-off-white);
    border-radius: 12px;
}

.hv-quote-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    color: var(--hv-navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--hv-orange);
}

.hv-quote-section-title i {
    color: var(--hv-orange);
}

.hv-form-group {
    margin-bottom: 20px;
}

.hv-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.875rem;
    color: var(--hv-medium-gray);
    font-weight: 500;
}

.hv-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--hv-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--hv-white);
}

.hv-input:focus {
    outline: none;
    border-color: var(--hv-blue);
}

.hv-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .hv-form-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.hv-form-actions {
    margin-top: 32px;
    text-align: right;
}

/* Legal/Privacy Page Styles */
.hv-legal-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--hv-medium-gray);
    line-height: 1.8;
}

.hv-legal-intro p {
    margin-bottom: 16px;
}

/* Download Card */
.hv-download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: var(--hv-off-white);
    border-radius: 12px;
    margin-top: 40px;
}

@media (min-width: 576px) {
    .hv-download-card {
        flex-direction: row;
        text-align: left;
    }
}

.hv-download-icon {
    width: 80px;
    height: 80px;
    background: #dc3545;
    color: var(--hv-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.hv-download-info {
    flex: 1;
}

.hv-download-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--hv-navy);
}

.hv-download-info p {
    color: var(--hv-medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Error 404 Page */
.hv-error-section {
    padding: 120px 0;
    background: var(--hv-off-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hv-error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hv-error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--hv-orange);
    line-height: 1;
    margin-bottom: 16px;
}

.hv-error-content h1 {
    margin-bottom: 20px;
    color: var(--hv-navy);
}

.hv-error-content p {
    color: var(--hv-medium-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hv-error-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hv-cta-btn-outline {
    background: transparent;
    border: 2px solid var(--hv-orange);
    color: var(--hv-orange);
}

.hv-cta-btn-outline:hover {
    background: var(--hv-orange);
    color: var(--hv-white);
}

/* Additional responsive adjustments */
@media (max-width: 767px) {
    .hv-page-hero {
        padding: 80px 0 40px;
    }
    
    .hv-content-card {
        padding: 24px;
        margin: 0 16px;
    }
    
    .hv-error-code {
        font-size: 5rem;
    }
    
    .hv-download-card {
        text-align: center;
    }
    
    /* Logistics section responsive */
    .hv-logistics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hv-logistics-card {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }
    
    .hv-logistics-number {
        font-size: 2rem;
    }
    
    /* Insurance section responsive */
    .hv-insurance-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hv-insurance-text {
        text-align: center;
        padding-bottom: 40px;
    }
    
    .hv-insurance-image {
        order: 2;
        max-height: 350px;
    }
    
    .hv-insurance-image img {
        max-height: 350px;
    }
    
    /* Feature grid reverse responsive */
    .hv-feature-grid-reverse {
        direction: ltr;
    }
    
    /* Showcase section responsive */
    .hv-showcase-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hv-showcase-content {
        padding-right: 0;
        order: 1;
    }
    
    .hv-showcase-image {
        order: 2;
    }
    
    .hv-showcase-title {
        font-size: 1.75rem;
    }
    
    /* Info cards with icons */
    .hv-info-cards {
        grid-template-columns: 1fr;
    }
    
    /* Solution cards responsive */
    .hv-solution-cards {
        grid-template-columns: 1fr;
    }
    
    /* Tools grid responsive */
    .hv-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .hv-tool-icon {
        width: 64px;
        height: 64px;
    }
    
    .hv-info-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    /* Why section 5 columns to single */
    .hv-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hv-why-item {
        padding: 28px 20px;
    }
    
    .hv-why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hv-logistics-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hv-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hv-solution-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hv-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hv-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hv-info-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hv-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .hv-why-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
