/* Custom Properties / Tokens */
:root {
    --color-primary: #00BFA6;
    --color-primary-light: rgba(0, 191, 166, 0.15);
    --color-secondary: #FF6B6B;
    --color-secondary-light: rgba(255, 107, 107, 0.15);
    --color-bg: #FAFBFF;
    --color-bg-alt: #FFF7EE;
    --color-text: #1F2937;
    --color-text-muted: #4B5563;
    --color-white: #FFFFFF;
    --color-border: #E5E7EB;
    
    --font-heading: 'Cormorant SC', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 10px 25px -5px rgba(0, 191, 166, 0.3);
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

/* Dark Mode Variables (Optional) */
[data-theme="dark"] {
    --color-bg: #111827;
    --color-bg-alt: #1F2937;
    --color-text: #F9FAFB;
    --color-text-muted: #D1D5DB;
    --color-white: #1F2937;
    --color-border: #374151;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: inline-block;
}

[data-theme="dark"] .footer-logo {
    filter: none;
    opacity: 1;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--color-white);
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFF !important;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #00a690;
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary) !important;
}

.btn-outline:hover {
    background-color: var(--color-primary-light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Form Controls */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
    outline: none;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-dark {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Logistics Hero Background */
.logistics-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    z-index: 0;
}

.grid-container {
    position: absolute;
    top: 50%; left: 50%;
    width: 200vw; height: 200vh;
    transform: translate(-50%, -30%) rotateX(60deg) rotateZ(45deg);
    transform-style: preserve-3d;
}

.grid-overlay {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: 
        linear-gradient(rgba(0, 191, 166, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 191, 166, 0.15) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

.grid-fade {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, transparent 20%, var(--color-bg) 70%);
    pointer-events: none;
}

/* Packets travelling on grid lines */
.packet {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    border-radius: 4px;
    box-shadow: 0 0 15px var(--color-secondary);
    opacity: 0;
}

.packet-1 { top: 40%; left: 40%; animation: pMove1 12s infinite; background-color: var(--color-secondary); }
.packet-2 { top: 30%; left: 60%; animation: pMove2 15s infinite 2s; background-color: var(--color-primary); box-shadow: 0 0 15px var(--color-primary);}
.packet-3 { top: 60%; left: 30%; animation: pMove3 10s infinite 5s; background-color: #3B82F6; box-shadow: 0 0 15px #3B82F6;}
.packet-4 { top: 50%; left: 70%; animation: pMove4 18s infinite 1s; background-color: var(--color-primary); box-shadow: 0 0 15px var(--color-primary);}
.packet-5 { top: 70%; left: 50%; animation: pMove5 14s infinite 4s; background-color: var(--color-secondary); }

/* Grid node movements (multiples of 80px) */
@keyframes pMove1 {
    0%   { transform: translate(0, 0); opacity: 0; }
    10%  { opacity: 1; }
    30%  { transform: translate(240px, 0); opacity: 1; }
    40%  { transform: translate(240px, 0); opacity: 1; }
    60%  { transform: translate(240px, 160px); opacity: 1; }
    90%  { transform: translate(400px, 160px); opacity: 1; }
    100% { transform: translate(400px, 160px); opacity: 0; }
}

@keyframes pMove2 {
    0%   { transform: translate(0, 0); opacity: 0; }
    10%  { opacity: 1; }
    25%  { transform: translate(0, 320px); opacity: 1; }
    35%  { transform: translate(0, 320px); opacity: 1; }
    60%  { transform: translate(-160px, 320px); opacity: 1; }
    90%  { transform: translate(-160px, 480px); opacity: 1; }
    100% { transform: translate(-160px, 480px); opacity: 0; }
}

@keyframes pMove3 {
    0%   { transform: translate(0, 0); opacity: 0; }
    10%  { opacity: 1; }
    30%  { transform: translate(160px, 0); opacity: 1; }
    40%  { transform: translate(160px, 0); opacity: 1; }
    60%  { transform: translate(160px, -240px); opacity: 1; }
    90%  { transform: translate(320px, -240px); opacity: 1; }
    100% { transform: translate(320px, -240px); opacity: 0; }
}

@keyframes pMove4 {
    0%   { transform: translate(0, 0); opacity: 0; }
    10%  { opacity: 1; }
    40%  { transform: translate(-320px, 0); opacity: 1; }
    50%  { transform: translate(-320px, 0); opacity: 1; }
    70%  { transform: translate(-320px, 160px); opacity: 1; }
    90%  { transform: translate(-480px, 160px); opacity: 1; }
    100% { transform: translate(-480px, 160px); opacity: 0; }
}

@keyframes pMove5 {
    0%   { transform: translate(0, 0); opacity: 0; }
    10%  { opacity: 1; }
    30%  { transform: translate(0, -240px); opacity: 1; }
    40%  { transform: translate(0, -240px); opacity: 1; }
    60%  { transform: translate(160px, -240px); opacity: 1; }
    90%  { transform: translate(160px, -400px); opacity: 1; }
    100% { transform: translate(160px, -400px); opacity: 0; }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.1;
}

.text-highlight {
    color: var(--color-primary);
    display: block;
    min-height: 1.2em;
    min-width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.text-highlight.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.text-highlight.fade-in {
    opacity: 0;
    transform: translateY(10px);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.trust-bar {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--color-text);
}
.trust-item svg {
    background: var(--color-primary-light);
    padding: 0.35rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

/* Cards & Components */
.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid var(--color-border);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-primary);
}

/* Services */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.services-grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.services-grid-4 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-desc {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* How It Works */
.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 3rem 0;
}

.process-line {
    position: absolute;
    top: 5rem;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
}

.process-line-fill {
    height: 100%;
    width: 0%;
    background: var(--color-primary);
    animation: lineFill 4s ease-out forwards;
}

@keyframes lineFill {
    to { width: 100%; }
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-pulse {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

.step-number {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 3px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.step-content {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--color-border);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.step-content-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Network & Tracking */
.network-tracking-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.tracking-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tracking-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tracking-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-bg);
    border-left: 4px solid var(--color-primary);
}

/* Network Section (Dark Full Width) */
.network-section {
    position: relative;
    background-color: #031527;
    color: var(--color-white);
    padding: 8rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.network-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.network-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.network-icon {
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
}

.network-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.network-kicker {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    border: 1px solid rgba(0, 191, 166, 0.3);
    background-color: rgba(0, 191, 166, 0.1);
    color: var(--color-primary);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.network-desc {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 2;
}

.network-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.6s both;
    position: relative;
    z-index: 2;
}

.network-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: var(--color-primary);
    color: #000000;
    font-weight: 700;
    border-radius: 9999px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
}

.network-cta-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 191, 166, 0.5);
    transform: translateY(-2px);
}

.network-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-weight: 600;
    border-radius: 9999px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.network-cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.network-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.network-link {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.network-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 166, 0.2);
}

.network-link svg {
    transition: transform var(--transition-fast);
}

.network-link:hover svg {
    transform: translateX(4px);
    color: var(--color-primary);
}

.network-nodes-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.map-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.map-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 24px; height: 24px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: mapPulse 3s infinite;
}

.map-dot:nth-child(2)::after { animation-delay: 0.5s; background-color: var(--color-secondary); }
.map-dot:nth-child(3)::after { animation-delay: 1.2s; background-color: var(--color-white); }
.map-dot:nth-child(4)::after { animation-delay: 2s; }
.map-dot:nth-child(5)::after { animation-delay: 1.5s; background-color: var(--color-secondary); }

@keyframes mapPulse {
    0% { transform: translate(-50%, -50%) scale(0.1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Testimonials */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(241, 245, 249, 0.8);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-primary);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-accent {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(0, 191, 166, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-slide {
    display: none;
    animation: fade-in 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-stars {
    color: #f59e0b; /* amber-500 */
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-quote {
    font-size: 1.125rem; /* text-lg */
    font-style: italic;
    color: #1e293b; /* slate-800 */
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 1.25rem; /* text-xl */
    }
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-name {
    color: #0f172a; /* slate-900 */
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.testimonial-author-title {
    color: #64748b; /* slate-500 */
    font-size: 0.875rem; /* text-sm */
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--color-primary);
    width: 32px;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav-btn:hover {
    background-color: #f8fafc;
}

.testimonial-prev {
    left: -70px;
}

.testimonial-next {
    right: -70px;
}

@media (max-width: 1024px) {
    .testimonial-nav-btn {
        display: none;
    }
}

/* Contact & Footer */
.contact-grid {
    grid-template-columns: 1fr 1fr;
}

.contact-list {
    margin-top: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer {
    background-color: #031527;
    color: rgba(255, 255, 255, 0.7);
    border-top: none;
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 191, 166, 0.05), transparent 50%);
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
    filter: none;
    opacity: 1;
}

.footer-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.stat-value {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.visitor-counter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: default;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.visitor-counter:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 191, 166, 0.3);
}

.counter-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.counter-value {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.counter-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    color: #031527;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.counter-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.visitor-counter:hover .counter-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Animations & Micro-interactions */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-logo {
    width: 80%;
    max-width: 320px;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

/* Media Queries */
@media (max-width: 992px) {
    .network-tracking-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 3px;
        height: 100%;
        margin-left: -1.5px;
    }
    
    .process-line-fill {
        width: 100%;
        height: 0;
        animation: lineFillMobile 4s ease-out forwards;
    }

    @keyframes lineFillMobile {
        to { height: 100%; }
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   Smarter Logistics Section
   ========================================================================== */

.smarter-logistics-section {
    background-color: #f2f9ff;
    padding: 6rem 0;
}

.smarter-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.smarter-item {
    grid-column: span 2;
    padding: 3.5rem 3rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.smarter-item-icon {
    margin-bottom: 1.5rem;
    color: #3b82f6;
    background-color: #eff6ff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smarter-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.smarter-item p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Adjust borders */
.smarter-item:nth-child(3) { border-right: none; }
.smarter-item:nth-child(4) { 
    grid-column: 2 / span 2;
    border-bottom: none; 
}
.smarter-item:nth-child(5) { 
    border-right: none;
    border-bottom: none; 
}

/* Responsive */
@media (max-width: 992px) {
    .smarter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .smarter-item, .smarter-item:nth-child(4), .smarter-item:nth-child(5) {
        grid-column: span 1;
        padding: 3rem 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .smarter-item:nth-child(odd) {
        border-right: 1px solid rgba(0,0,0,0.06);
    }
    .smarter-item:nth-last-child(1),
    .smarter-item:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .smarter-grid {
        grid-template-columns: 1fr;
    }
    .smarter-item, .smarter-item:nth-child(odd), .smarter-item:nth-child(4), .smarter-item:nth-child(5) {
        grid-column: span 1;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .smarter-item:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   Platform Preview Section
   ========================================================================== */

.platform-preview-section {
    background-color: #031527; /* Dark navy */
    padding: 6rem 0;
    overflow: hidden;
}

.dashboard-preview-wrapper {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.dashboard-preview-img {
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(30, 41, 59, 1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 191, 166, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: var(--color-primary);
}

.feature-icon {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .dashboard-preview-img {
        max-width: 100%;
    }
}

/* ==========================================================================
   Dashboard HTML Mockup
   ========================================================================== */
.dashboard-ui {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 191, 166, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-align: left;
    font-family: var(--font-body);
    color: var(--color-text);
    margin: 0 auto;
    max-width: 90%;
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}
.dash-logo {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}
.dash-nav {
    display: flex;
    gap: 1.5rem;
}
.dash-nav span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    cursor: pointer;
    font-weight: 500;
}
.dash-nav span.active {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 1.25rem;
    margin-bottom: -1rem;
}
.dash-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.dash-avatar {
    width: 32px;
    height: 32px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.dash-body {
    padding: 2rem;
    background: #f8fafc;
}
.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.dash-top h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.dash-top p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}
.dash-actions {
    display: flex;
    gap: 0.75rem;
}
.dash-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}
.dash-btn-outline {
    background: white;
    border-color: var(--color-border);
    color: var(--color-text);
}
.dash-btn-outline:hover {
    background: #f3f4f6;
}
.dash-btn-primary {
    background: var(--color-primary);
    color: white;
}
.dash-btn-primary:hover {
    filter: brightness(0.9);
}
.dash-table-wrapper {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
}
.dash-table {
    width: 100%;
    border-collapse: collapse;
}
.dash-table th, .dash-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    white-space: nowrap;
}
.dash-table th {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    background: #f3f4f6;
}
.dash-table tr:last-child td {
    border-bottom: none;
}
.dash-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}
.dash-table tbody tr:hover {
    background-color: #f1f5f9;
}
.dash-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.dash-badge.success {
    background: #dcfce7;
    color: #166534;
}
.dash-badge.pending {
    background: #fef9c3;
    color: #854d0e;
}

@media (max-width: 768px) {
    .dash-nav {
        display: none;
    }
    .dash-body {
        padding: 1rem;
    }
    .dash-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .dashboard-ui {
        max-width: 100%;
    }
}

/* Dashboard Views and Transitions */
.dash-view {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.dash-view.active-view {
    opacity: 1;
}

/* Dashboard Metrics */
.dash-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.dash-metric {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}
.metric-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.metric-change {
    font-size: 0.85rem;
    font-weight: 500;
}
.metric-change.positive { color: #16a34a; }
.metric-change.negative { color: #dc2626; }

/* Dashboard Analytics Chart */
.dash-chart-placeholder {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    padding: 2rem 2rem 0 2rem;
    height: 250px;
    box-shadow: var(--shadow-sm);
}
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding-bottom: 25px;
    position: relative;
    border-bottom: 2px solid var(--color-border);
}
.bar {
    width: 40px;
    background: var(--color-primary-light);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
    transition: background 0.2s;
}
.bar:hover {
    background: var(--color-primary);
}
.bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .dash-metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section New Styles */
.contact-container {
    max-width: 1152px; /* max-w-6xl */
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .contact-grid-new {
        grid-template-columns: 5fr 7fr;
    }
}
.contact-info-new {
    display: flex;
    flex-direction: column;
}
.contact-kicker {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    align-self: flex-start;
}
.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}
.contact-desc {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.contact-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-primary);
}
.contact-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 10px;
    flex-shrink: 0;
}
.contact-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.contact-card-text {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}
.contact-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}
.trust-icon {
    font-size: 1rem;
}
.contact-form-wrapper-new {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}
.form-group-new {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.3s ease;
    font-family: inherit;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.15);
}
.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: var(--color-primary);
    color: #000000;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.contact-submit-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
    transform: translateY(-1px);
}

/* Footer New Styles */
.footer-new {
    background-color: #020617; /* slate-950 */
    color: #f8fafc;
    border-top: 1px solid #1e293b;
}
.footer-container-new {
    max-width: 1280px; /* max-w-7xl */
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .footer-container-new {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-container-new {
        grid-template-columns: repeat(4, 1fr);
    }
}
.footer-brand-new {
    display: flex;
    flex-direction: column;
}
.footer-val-prop {
    color: #94a3b8; /* slate-400 */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}
.social-icons-new {
    display: flex;
    gap: 1rem;
}
.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #f8fafc;
    transition: all 0.3s ease;
}
.social-icon-btn:hover {
    background-color: var(--color-primary);
    color: #000000;
}
.footer-title-new {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.footer-list a:hover {
    color: var(--color-primary);
}
.footer-contact-item {
    color: #94a3b8;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.footer-bottom-new {
    border-top: 1px solid #1e293b; /* border-slate-800 */
    padding: 2rem 0;
}
.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}
@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
    }
}
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-legal-links a:hover {
    color: #ffffff;
}
.dot-separator {
    color: #475569;
}
.footer-visitor-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0f172a;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #1e293b;
    font-weight: 500;
}
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981; /* green-500 */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* ==========================================================================
   Dark Mode Overrides for Hardcoded Light Colors
   ========================================================================== */

[data-theme="dark"] .smarter-logistics-section {
    background-color: var(--color-bg);
}

[data-theme="dark"] .smarter-item-icon {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
}

[data-theme="dark"] .dash-body {
    background-color: var(--color-bg);
}

[data-theme="dark"] .dash-table-wrapper,
[data-theme="dark"] .dash-metric,
[data-theme="dark"] .dash-chart-placeholder {
    background-color: var(--color-bg-alt);
    border-color: var(--color-border);
}

[data-theme="dark"] .dash-table th {
    background-color: var(--color-border);
    color: var(--color-text-muted);
}

[data-theme="dark"] .dash-table td {
    border-color: var(--color-border);
    color: var(--color-text);
}

[data-theme="dark"] .dash-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.01);
}
[data-theme="dark"] .dash-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .dash-badge.success {
    background-color: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

[data-theme="dark"] .dash-badge.pending {
    background-color: rgba(250, 204, 21, 0.15);
    color: #facc15;
}

[data-theme="dark"] .dash-btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

[data-theme="dark"] .dash-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .testimonial-quote,
[data-theme="dark"] .testimonial-author-name {
    color: var(--color-text);
}

[data-theme="dark"] .testimonial-author-title {
    color: var(--color-text-muted);
}

[data-theme="dark"] .testimonial-card {
    background-color: var(--color-bg-alt);
    border-color: var(--color-border);
}

[data-theme="dark"] .testimonial-accent {
    color: rgba(0, 191, 166, 0.05);
}

[data-theme="dark"] .contact-title,
[data-theme="dark"] .contact-card-title,
[data-theme="dark"] .form-label {
    color: var(--color-text);
}

[data-theme="dark"] .contact-desc,
[data-theme="dark"] .contact-card-text,
[data-theme="dark"] .contact-trust-badge {
    color: var(--color-text-muted);
}

[data-theme="dark"] .contact-card-item,
[data-theme="dark"] .contact-form-wrapper-new {
    background-color: var(--color-bg-alt);
    border-color: var(--color-border);
}

[data-theme="dark"] .contact-icon-badge {
    background-color: rgba(0, 191, 166, 0.1);
}

[data-theme="dark"] .form-input {
    background-color: var(--color-bg);
    border-color: var(--color-border);
    color: var(--color-text);
}

[data-theme="dark"] .form-input:focus {
    border-color: var(--color-primary);
}
