/* ==================== GLOBAL RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C1B8C;
    --primary-light: #8B3AB8;
    --primary-dark: #4A0F6B;
    --secondary: #FF6600;
    --secondary-light: #FF8533;
    --secondary-dark: #CC5200;
    --dark: #0a0e1a;
    --dark-card: #111827;
    --card: #1a2236;
    --card-hover: #24304a;
    --text: #ffffff;
    --text-muted: #9aa8c9;
    --text-light: #c8d4e8;
    --border: rgba(108, 27, 140, 0.2);
    --border-hover: rgba(108, 27, 140, 0.4);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --gradient: linear-gradient(135deg, #6C1B8C, #4A0F6B);
    --gradient-secondary: linear-gradient(135deg, #FF6600, #CC5200);
    --gradient-glow: linear-gradient(135deg, rgba(108, 27, 140, 0.15), rgba(255, 102, 0, 0.08));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ==================== SELECTION ==================== */
::selection {
    background: var(--primary);
    color: #fff;
}

/* ==================== LOADING ANIMATION - TRUCK ==================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}
.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-road {
    position: absolute;
    bottom: 22%;
    left: 5%;
    width: 90%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}
.loader-road::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 15px, rgba(108, 27, 140, 0.3) 15px, rgba(108, 27, 140, 0.3) 20px);
    animation: roadMove 2s linear infinite;
}
@keyframes roadMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40px); }
}

.loader-truck-container {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}
.loader-truck {
    position: relative;
    width: 320px;
    height: 150px;
    margin: 0 auto;
}
.loader-truck .cargo {
    position: absolute;
    left: 0;
    top: 0;
    width: 230px;
    height: 115px;
    background: linear-gradient(180deg, #1a2a4a, #0e1a2e);
    border-radius: 8px 12px 8px 8px;
    border: 2px solid rgba(108, 27, 140, 0.3);
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-truck .cargo .brand {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff, #6C1B8C, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 3;
}
.loader-truck .cargo .brand .purple {
    -webkit-text-fill-color: #6C1B8C;
}
.loader-truck .cargo .brand .orange {
    -webkit-text-fill-color: #FF6600;
}
.loader-truck .cargo .door-line {
    position: absolute;
    top: 10%;
    width: 2px;
    height: 80%;
    background: rgba(108, 27, 140, 0.1);
}
.loader-truck .cargo .door-line:nth-child(3) { left: 45%; }
.loader-truck .cargo .door-line:nth-child(4) { left: 55%; }
.loader-truck .cargo .door-line:nth-child(5) { left: 65%; }
.loader-truck .cargo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 30px, rgba(108, 27, 140, 0.05) 30px, rgba(108, 27, 140, 0.05) 31px);
}

.loader-truck .cabin {
    position: absolute;
    right: 0;
    top: 12px;
    width: 95px;
    height: 85px;
    background: linear-gradient(180deg, #1a2a4a, #0a1628);
    border-radius: 12px 20px 8px 8px;
    border: 2px solid rgba(108, 27, 140, 0.3);
    z-index: 3;
}
.loader-truck .cabin .window {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 40px;
    height: 32px;
    background: rgba(108, 27, 140, 0.15);
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(108, 27, 140, 0.2);
    overflow: hidden;
}
.loader-truck .cabin .window::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 27, 140, 0.3), transparent);
    animation: windowGlow 2s ease-in-out infinite;
}
@keyframes windowGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
.loader-truck .cabin .door {
    position: absolute;
    bottom: 10px;
    right: 14px;
    width: 24px;
    height: 32px;
    background: rgba(108, 27, 140, 0.08);
    border-radius: 4px 4px 0 0;
    border: 1px solid rgba(108, 27, 140, 0.12);
}
.loader-truck .cabin .door::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(108, 27, 140, 0.3);
    border-radius: 50%;
}
.loader-truck .cabin .headlight {
    position: absolute;
    bottom: 8px;
    width: 12px;
    height: 6px;
    background: rgba(255, 102, 0, 0.6);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}
.loader-truck .cabin .headlight.left { left: -10px; }
.loader-truck .cabin .headlight.right { left: 18px; }

.loader-truck .wheel {
    position: absolute;
    bottom: -12px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 40% 35%, #2a2a3a, #0a0a12);
    border-radius: 50%;
    border: 3px solid #1a1a2a;
    z-index: 4;
    animation: wheelSpin 1s linear infinite;
}
@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-truck .wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(108, 27, 140, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(108, 27, 140, 0.1);
}
.loader-truck .wheel.front { right: 15px; }
.loader-truck .wheel.rear { left: 30px; }
.loader-truck .wheel.rear2 { left: 55px; }

.loader-truck .exhaust {
    position: absolute;
    bottom: 28px;
    right: -6px;
    width: 6px;
    height: 14px;
    background: #2a2a3a;
    border-radius: 0 0 4px 4px;
    z-index: 1;
}
.loader-truck .exhaust::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 14px;
    height: 8px;
    background: radial-gradient(ellipse, rgba(255, 102, 0, 0.2), transparent);
    border-radius: 50%;
    animation: exhaustPuff 1s ease-out infinite;
}
@keyframes exhaustPuff {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.loader-text-container {
    position: relative;
    text-align: center;
    z-index: 5;
    margin-top: 20px;
}
.loader-text-container .loader-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #ffffff, #6C1B8C, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.loader-text-container .loader-sub {
    color: #9aa8c9;
    font-size: 12px;
    letter-spacing: 3px;
    margin-top: 6px;
}

.loader-progress-container {
    position: relative;
    width: 320px;
    z-index: 5;
    margin-top: 25px;
}
.loader-progress-container .progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}
.loader-progress-container .progress-bar .fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #6C1B8C, #FF6600, #6C1B8C);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: progressFill 2s ease-in-out forwards, progressShine 1.5s ease-in-out infinite;
}
@keyframes progressFill {
    0% { width: 0%; }
    10% { width: 8%; }
    25% { width: 22%; }
    40% { width: 38%; }
    55% { width: 52%; }
    70% { width: 68%; }
    85% { width: 85%; }
    100% { width: 100%; }
}
@keyframes progressShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.loader-progress-container .progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: #667799;
    letter-spacing: 1px;
}
.loader-progress-container .progress-text .percentage {
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(135deg, #6C1B8C, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 0.7rem 5%;
    background: rgba(10, 14, 26, 0.98);
}

.navbar .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}
.navbar .logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

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

.navbar .nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition);
    position: relative;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width var(--transition);
}

.navbar .nav-links a:hover::after,
.navbar .nav-links a.active::after {
    width: 100%;
}

.navbar .nav-links a:hover {
    color: var(--primary-light);
}

.navbar .nav-links a.active {
    color: var(--secondary);
}

.navbar .track-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600 !important;
}

.navbar .track-btn::after {
    display: none;
}

.navbar .track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 27, 140, 0.4);
}

.navbar .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 27, 140, 0.35);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 60px;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* ==================== GLOW BACKGROUND ==================== */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 30% 20%, #0a0e1a, var(--dark));
    pointer-events: none;
}

.bg-glow .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.bg-glow .orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(108, 27, 140, 0.08);
    top: -100px;
    left: -100px;
    animation: floatOrb 20s ease-in-out infinite;
}

.bg-glow .orb.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 102, 0, 0.05);
    bottom: -200px;
    right: -150px;
    animation: floatOrb 25s ease-in-out infinite reverse;
}

.bg-glow .orb.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(108, 27, 140, 0.06);
    top: 50%;
    right: 10%;
    animation: floatOrb 15s ease-in-out infinite 2s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.1); }
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.75);
    z-index: 1;
}
.hero .hero-content {
    max-width: 950px;
    z-index: 2;
    animation: fadeUp 1s ease-out;
    position: relative;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(108, 27, 140, 0.3));
    transition: all 0.5s ease;
    animation: logoFloat 3s ease-in-out infinite;
}
.hero-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 80px rgba(108, 27, 140, 0.5));
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.8rem;
    background: rgba(108, 27, 140, 0.15);
    border: 1px solid rgba(108, 27, 140, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: #8B3AB8;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #6C1B8C, #FF6600, #fff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 6s linear infinite;
}
@keyframes textFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
.hero p {
    font-size: 1.2rem;
    color: #c8d4e8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== STATS ==================== */
.stats-section {
    padding: 4rem 0;
    background: #0a0e1a;
}
.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stats-section .stat-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.stats-section .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 102, 0, 0.3);
}
.stats-section .stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stats-section .stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==================== SERVICES PREVIEW ==================== */
.services-preview {
    padding: 5rem 0;
    background: #0a0e1a;
}
.services-preview .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.services-preview .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
.services-preview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.services-preview .service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    color: #fff;
}
.services-preview .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(108, 27, 140, 0.1);
}
.services-preview .service-card .icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(108, 27, 140, 0.2), rgba(255, 102, 0, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary);
    margin: 0 auto 1.2rem;
}
.services-preview .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.services-preview .service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 5rem 0;
    background: #0a0e1a;
}
.cta-section .cta-box {
    background: var(--gradient-glow);
    border-radius: 24px;
    padding: 4rem 3rem;
    border: 1px solid var(--border);
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #060a16;
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}

.footer .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer .footer-col h4 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer .footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer .footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0.6rem;
    transition: all var(--transition);
}

.footer .footer-col a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer .footer-col .social-links {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.footer .footer-col .social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    margin-bottom: 0;
}

.footer .footer-col .social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
}

.footer .footer-col .social-links a i {
    color: var(--text);
    font-size: 16px;
}

.footer .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer .footer-bottom p {
    color: #667799;
    font-size: 13px;
}

.footer .footer-bottom .footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer .footer-bottom .footer-links a {
    color: #667799;
    font-size: 13px;
    transition: color var(--transition);
}

.footer .footer-bottom .footer-links a:hover {
    color: var(--secondary);
}

/* ==================== PAGE HERO ==================== */
.page-hero {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.8);
    z-index: 0;
}
.page-hero .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #6C1B8C, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.page-hero p {
    color: #c8d4e8;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==================== SERVICE PAGES ==================== */
.service-hero {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.8);
    z-index: 0;
}
.service-hero .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #6C1B8C, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.service-hero p {
    color: #c8d4e8;
    font-size: 1.2rem;
    line-height: 1.8;
}

.service-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.service-content .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}
.service-content .grid.reverse {
    direction: rtl;
}
.service-content .grid.reverse > * {
    direction: ltr;
}
.service-content .text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #6C1B8C, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-content .text p {
    color: #9aa8c9;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.service-content .text ul {
    list-style: none;
    padding: 0;
}
.service-content .text ul li {
    padding: 0.5rem 0;
    color: #9aa8c9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.service-content .text ul li i {
    color: #FF6600;
    font-size: 1.1rem;
    width: 20px;
}
.service-content .image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(108, 27, 140, 0.2);
}
.service-content .image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.service-content .image .placeholder {
    width: 100%;
    height: 350px;
    background: #111b33;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667799;
    font-size: 4rem;
    opacity: 0.3;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}
.service-features .feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(108, 27, 140, 0.15);
    transition: all 0.3s ease;
}
.service-features .feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}
.service-features .feature i {
    font-size: 2.5rem;
    color: #FF6600;
    margin-bottom: 1rem;
}
.service-features .feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.service-features .feature p {
    color: #9aa8c9;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-cta {
    background: linear-gradient(135deg, rgba(108, 27, 140, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(108, 27, 140, 0.2);
    margin-top: 2rem;
}
.service-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #6C1B8C, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-cta p {
    color: #9aa8c9;
    margin-bottom: 1.5rem;
}

/* ==================== TRACKING PAGE ==================== */
.track-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: url('/images/hero-bg.jpg') center/cover fixed;
    position: relative;
}
.track-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.85);
    z-index: 0;
}
.track-card {
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}
.track-card .icon-top {
    text-align: center;
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}
.track-card h1 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}
.track-card .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.track-card .form-group {
    margin-bottom: 1.5rem;
}
.track-card .form-group label {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.track-card .form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}
.track-card .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 27, 140, 0.15);
}
.track-card .form-group input::placeholder {
    color: #667799;
}
.track-card .email-hint {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 0.5rem;
}
.track-card .email-hint i {
    color: var(--secondary);
}
.track-card .track-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.track-card .track-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 27, 140, 0.4);
}
.track-card .track-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.track-card .result-box {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: none;
    align-items: center;
    gap: 0.8rem;
}
.track-card .result-box.success {
    display: flex;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}
.track-card .result-box.error {
    display: flex;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}
.track-card .result-box.info {
    display: flex;
    background: rgba(108, 27, 140, 0.1);
    border: 1px solid rgba(108, 27, 140, 0.2);
    color: #8B3AB8;
}
.track-card .result-box i {
    font-size: 20px;
    flex-shrink: 0;
}
.track-card .result-box .result-content {
    flex: 1;
}
.track-card .result-box .result-content strong {
    display: block;
    font-size: 14px;
}
.track-card .result-box .result-content .small {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 2px;
}

/* ==================== CHAT WIDGET - FLOATING ==================== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-widget .chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(108, 27, 140, 0.4);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chat-widget .chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(108, 27, 140, 0.6);
}

.chat-widget .chat-toggle .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Window */
.chat-widget .chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 550px;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.chat-widget .chat-window.open {
    display: flex;
}

/* Chat Header */
.chat-widget .chat-header {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(108, 27, 140, 0.15), rgba(255, 102, 0, 0.05));
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chat-widget .chat-header .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-widget .chat-header .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.chat-widget .chat-header .header-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* Status Indicator */
.chat-widget .chat-header .header-info .status-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.chat-widget .chat-header .header-info .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* OFFLINE - Blinking Green */
.chat-widget .chat-header .header-info .status-dot.offline {
    background: #4CAF50;
    animation: blinkGreen 1.5s ease-in-out infinite;
}

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

/* ONLINE - Solid Green */
.chat-widget .chat-header .header-info .status-dot.online {
    background: #4CAF50;
    animation: none;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

/* TYPING - Pulsing Green */
.chat-widget .chat-header .header-info .status-dot.typing {
    background: #4CAF50;
    animation: pulseGreen 1s ease-in-out infinite;
}

@keyframes pulseGreen {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(76, 175, 80, 0.4); }
    50% { transform: scale(1.3); box-shadow: 0 0 20px rgba(76, 175, 80, 0.8); }
}

.chat-widget .chat-header .header-info .status-text {
    font-size: 12px;
    color: #9aa8c9;
}

.chat-widget .chat-header .header-info .status-text .highlight {
    color: #4CAF50;
    font-weight: 500;
}

.chat-widget .chat-header .close-chat {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chat-widget .chat-header .close-chat:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

/* Chat Body */
.chat-widget .chat-body {
    flex: 1;
    padding: 1.2rem 1.5rem;
    overflow-y: auto;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-widget .chat-body .message {
    margin-bottom: 0.5rem;
    max-width: 85%;
}

.chat-widget .chat-body .message.user {
    margin-left: auto;
}

.chat-widget .chat-body .message .bubble {
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-widget .chat-body .message.user .bubble {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-widget .chat-body .message.admin .bubble {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-bottom-left-radius: 4px;
}

.chat-widget .chat-body .message .time {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* Chat Footer */
.chat-widget .chat-footer {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
    align-items: center;
}

.chat-widget .chat-footer input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 60px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    min-width: 0;
}

.chat-widget .chat-footer input:focus {
    outline: none;
    border-color: var(--secondary);
}

.chat-widget .chat-footer input::placeholder {
    color: #667799;
}

.chat-widget .chat-footer .send-btn {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 60px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
}

.chat-widget .chat-footer .send-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(108, 27, 140, 0.3);
}

.chat-widget .chat-footer .send-btn i {
    font-size: 14px;
}

/* ===== RESPONSIVE CHAT ===== */
@media (max-width: 768px) {
    .chat-widget .chat-window {
        width: 320px;
        right: -20px;
        max-height: 450px;
    }
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    .chat-widget .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    .chat-widget .chat-footer {
        padding: 0.6rem 1rem;
        gap: 8px;
    }
    .chat-widget .chat-footer input {
        font-size: 13px;
        padding: 0.6rem 0.8rem;
    }
    .chat-widget .chat-footer .send-btn {
        font-size: 13px;
        padding: 0.6rem 1rem;
        min-height: 40px;
    }
    .chat-widget .chat-body {
        padding: 1rem 1.2rem;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .chat-widget .chat-window {
        width: 290px;
        right: -40px;
        max-height: 450px;
    }
    .chat-widget .chat-footer {
        padding: 0.5rem 0.8rem;
        gap: 6px;
    }
    .chat-widget .chat-footer input {
        font-size: 12px;
        padding: 0.5rem 0.7rem;
    }
    .chat-widget .chat-footer .send-btn {
        font-size: 12px;
        padding: 0.5rem 0.8rem;
        min-height: 36px;
    }
    .chat-widget .chat-footer .send-btn i {
        font-size: 12px;
    }
    .chat-widget .chat-body .message .bubble {
        font-size: 13px;
        padding: 0.6rem 1rem;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .loader-truck {
        width: 280px;
        height: 130px;
    }
    .loader-truck .cargo {
        width: 200px;
        height: 100px;
    }
    .loader-truck .cargo .brand {
        font-size: 24px;
    }
    .loader-truck .cabin {
        width: 85px;
        height: 75px;
        top: 10px;
    }
    .loader-progress-container {
        width: 280px;
    }
    .service-content .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-content .grid.reverse {
        direction: ltr;
    }
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .menu-toggle {
        display: block;
    }
    .navbar .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 1.5rem;
    }
    .navbar .nav-links.active {
        left: 0;
    }
    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer .footer-bottom .footer-links {
        justify-content: center;
    }
    .loader-truck {
        width: 220px;
        height: 110px;
    }
    .loader-truck .cargo {
        width: 160px;
        height: 85px;
    }
    .loader-truck .cargo .brand {
        font-size: 18px;
    }
    .loader-truck .cabin {
        width: 70px;
        height: 60px;
        top: 8px;
    }
    .loader-truck .cabin .window {
        width: 28px;
        height: 22px;
        top: 10px;
        left: 10px;
    }
    .loader-truck .wheel {
        width: 22px;
        height: 22px;
        bottom: -10px;
    }
    .loader-truck .wheel::before {
        width: 6px;
        height: 6px;
    }
    .loader-truck .wheel.front { right: 12px; }
    .loader-truck .wheel.rear { left: 22px; }
    .loader-truck .wheel.rear2 { left: 40px; }
    .loader-truck .exhaust { display: none; }
    .loader-progress-container {
        width: 220px;
    }
    .loader-text-container .loader-title {
        font-size: 18px;
    }
    .loader-text-container .loader-sub {
        font-size: 10px;
    }
    .navbar .logo img {
        height: 40px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-logo img {
        max-width: 250px;
    }
    .page-hero {
        padding: 6rem 5% 3rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .service-hero {
        padding: 6rem 5% 3rem;
    }
    .service-hero h1 {
        font-size: 2.2rem;
    }
    .service-hero p {
        font-size: 1rem;
    }
    .service-content {
        padding: 2rem 5%;
    }
    .service-content .text h2 {
        font-size: 1.6rem;
    }
    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-content .image img,
    .service-content .image .placeholder {
        height: 250px;
    }
    .service-cta {
        padding: 2rem 1.5rem;
    }
    .service-cta h3 {
        font-size: 1.4rem;
    }
    .track-card {
        padding: 2rem 1.5rem;
    }
    .track-card h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .loader-truck {
        width: 180px;
        height: 90px;
    }
    .loader-truck .cargo {
        width: 130px;
        height: 70px;
    }
    .loader-truck .cargo .brand {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .loader-truck .cabin {
        width: 55px;
        height: 48px;
        top: 6px;
    }
    .loader-truck .cabin .window {
        width: 20px;
        height: 16px;
        top: 8px;
        left: 8px;
    }
    .loader-truck .wheel {
        width: 18px;
        height: 18px;
        bottom: -8px;
    }
    .loader-truck .wheel::before {
        width: 4px;
        height: 4px;
    }
    .loader-truck .wheel.front { right: 8px; }
    .loader-truck .wheel.rear { left: 16px; }
    .loader-truck .wheel.rear2 { left: 30px; }
    .loader-progress-container {
        width: 180px;
    }
    .loader-text-container .loader-title {
        font-size: 14px;
        letter-spacing: 3px;
    }
    .loader-text-container .loader-sub {
        font-size: 9px;
        letter-spacing: 2px;
    }
    .loader-progress-container .progress-text {
        font-size: 9px;
    }
    .loader-progress-container .progress-text .percentage {
        font-size: 12px;
    }
    .navbar .logo img {
        height: 35px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-logo img {
        max-width: 180px;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .service-hero h1 {
        font-size: 1.8rem;
    }
    .service-content .text h2 {
        font-size: 1.3rem;
    }
    .service-content .image img,
    .service-content .image .placeholder {
        height: 200px;
    }
    .service-features .feature {
        padding: 1.5rem;
    }
    .service-cta {
        padding: 1.5rem 1rem;
    }
    .service-cta h3 {
        font-size: 1.2rem;
    }
    .track-card {
        padding: 1.5rem 1rem;
    }
    .track-card h1 {
        font-size: 1.5rem;
    }
}