:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --secondary-color: #42a5f5;
    --accent-color: #ff4081;
    --text-primary: #1A1D29;
    --text-secondary: #6B7280;
    --background: #FFFFFF;
    --surface: #F8FAFC;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

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

/* Navigation */
.navbar {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.logo-truck {
    position: relative;
    color: white;
    font-size: 1.2rem;
}

.logo-heart {
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 0.8rem;
    color: #ff4081;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.nav-logo span small {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    color: white;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 136, 229, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 64, 129, 0.1) 100%);
    animation: background-shift 8s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% { transform: translateX(-50px) scale(1); }
    50% { transform: translateX(50px) scale(1.1); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 60px, rgba(30, 136, 229, 0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 64, 129, 0.3), transparent),
        radial-gradient(1px 1px at 90px 30px, rgba(66, 165, 245, 0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(30, 136, 229, 0.2), transparent);
    background-size: 200px 200px;
    animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(-10px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-truck, .floating-heart, .floating-shield, .floating-clock, .floating-star, .floating-lock {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-around 15s linear infinite;
    transition: all 0.3s ease;
}

.floating-truck {
    top: 20%;
    left: 80%;
    color: var(--primary-color);
    animation-delay: 0s;
}

.floating-heart {
    top: 60%;
    left: 10%;
    color: var(--accent-color);
    animation-delay: 5s;
}

.floating-shield {
    top: 30%;
    left: 15%;
    color: var(--secondary-color);
    animation-delay: 10s;
}

.floating-clock {
    top: 70%;
    left: 85%;
    color: #4caf50;
    animation-delay: 3s;
}

.floating-star {
    top: 15%;
    left: 5%;
    color: #ffd700;
    animation-delay: 8s;
}

.floating-lock {
    top: 50%;
    left: 90%;
    color: #ff5722;
    animation-delay: 12s;
}

.floating-elements:hover .floating-truck,
.floating-elements:hover .floating-heart,
.floating-elements:hover .floating-shield,
.floating-elements:hover .floating-clock,
.floating-elements:hover .floating-star,
.floating-elements:hover .floating-lock {
    opacity: 0.3;
    transform: scale(1.2);
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, -80px) rotate(180deg); }
    75% { transform: translate(-50px, -40px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.dynamic-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(30, 136, 229, 0.1), rgba(255, 64, 129, 0.1));
    animation: shape-float 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 20%;
    animation-delay: 7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 80%;
    animation-delay: 14s;
}

@keyframes shape-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.1; 
    }
    33% { 
        transform: translateY(-50px) rotate(120deg) scale(1.2); 
        opacity: 0.2; 
    }
    66% { 
        transform: translateY(-20px) rotate(240deg) scale(0.8); 
        opacity: 0.15; 
    }
}

/* Enhanced Interactive Buttons */
.interactive-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.btn-content {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.interactive-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.4);
}

.interactive-btn:hover .btn-content {
    transform: translateY(-2px);
}

.interactive-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
    transition: width 0.1s ease, height 0.1s ease;
}

.interactive-btn:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.interactive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}

/* Enhanced Primary Button */
.btn-primary.interactive-btn:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--accent-color));
    box-shadow: 
        0 15px 35px rgba(30, 136, 229, 0.4),
        0 0 30px rgba(255, 64, 129, 0.3);
}

/* Enhanced Secondary Button */
.btn-secondary.interactive-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-color: transparent;
    color: white;
    box-shadow: 
        0 15px 35px rgba(30, 136, 229, 0.4),
        0 0 30px rgba(255, 64, 129, 0.3);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
    gap: 60px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(255, 64, 129, 0.2));
    border: 1px solid rgba(30, 136, 229, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(30, 136, 229, 0.3); }
    50% { box-shadow: 0 0 30px rgba(30, 136, 229, 0.5), 0 0 40px rgba(255, 64, 129, 0.3); }
}

.hero-badge i {
    color: #ffd700;
    animation: star-twinkle 2s ease-in-out infinite;
}

@keyframes star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.highlight-text {
    background: linear-gradient(135deg, #1e88e5 0%, #ff4081 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e88e5 0%, #ff4081 100%);
    border-radius: 2px;
    animation: underline-expand 2s ease-out;
}

@keyframes underline-expand {
    0% { width: 0; }
    100% { width: 100%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-item {
    position: relative;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    animation: count-up 2s ease-out;
    position: relative;
}

.stat-item .stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.stat-item:hover .stat-number::after {
    width: 50px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 1);
}

@keyframes count-up {
    0% { 
        transform: scale(0.5) rotateY(180deg); 
        opacity: 0; 
    }
    50% { 
        transform: scale(1.2) rotateY(90deg); 
        opacity: 0.7; 
    }
    100% { 
        transform: scale(1) rotateY(0deg); 
        opacity: 1; 
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pulse-animation {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(30, 136, 229, 0);
        transform: scale(1.05);
    }
}

.hero-trust {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.hero-text {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

.hero-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    animation: dashboard-float 3s ease-in-out infinite;
}

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

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-indicator.live {
    background: #4caf50;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.tracking-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tracking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tracking-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.item-icon.pharmacy { background: rgba(76, 175, 80, 0.2); color: #4caf50; }
.item-icon.lab { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.item-icon.financial { background: rgba(33, 150, 243, 0.2); color: #2196f3; }

.item-details {
    flex: 1;
}

.item-title {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.item-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e88e5, #42a5f5);
    border-radius: 2px;
    animation: progress-load 3s ease-out;
}

.progress-fill.complete {
    background: linear-gradient(90deg, #4caf50, #81c784);
}

@keyframes progress-load {
    0% { width: 0% !important; }
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: card-slide-in 0.8s ease-out;
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-card.security { animation-delay: 0.2s; }
.hero-card.speed { animation-delay: 0.4s; }
.hero-card.tracking { animation-delay: 0.6s; }

@keyframes card-slide-in {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Mission Statement */
.mission {
    padding: 80px 0;
    background: var(--background);
    text-align: center;
    margin: 0;
}

.mission h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.mission p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--background);
    margin: 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pillar p {
    color: var(--text-secondary);
}

/* Services */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background: var(--surface);
    text-align: center;
}

.service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-area p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.city-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.city-card span {
    display: block;
    font-weight: 600;
}

/* Track Delivery */
.track-delivery {
    padding: 80px 0;
    text-align: center;
}

.track-delivery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.track-delivery p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.track-form {
    display: flex;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.track-form input {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.track-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.tracking-result {
    margin-top: 30px;
    padding: 20px;
    background: var(--surface);
    border-radius: 8px;
    display: none;
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
    background: var(--surface);
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.request-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.request-form input,
.request-form select {
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.request-form input:focus,
.request-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
}

.footer-logo .logo-truck {
    font-size: 1.1rem;
}

.footer-logo .logo-heart {
    font-size: 0.7rem;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9CA3AF;
}

/* Loading screen styles removed to prevent flashing */

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px auto 0;
    width: 100%;
    max-width: 800px;
    justify-items: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateX(0);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.hero-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-large);
    background: rgba(255, 255, 255, 1);
}

.hero-card .card-content {
    flex: 1;
    text-align: center;
}

.hero-card .card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hero-card .card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Enhanced Pillar Animations */
.pillar {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

.pillar:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-large);
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

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

/* Enhanced City Cards */
.city-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.8);
}

.city-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-large);
}

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced Button Animations */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Advanced Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        max-width: 600px;
    }

    .pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    /* Hero Section Mobile */
    .hero {
        padding: 80px 15px 60px;
        min-height: 90vh;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 20px;
        white-space: nowrap;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
        text-align: center;
        padding: 0 10px;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        width: 100%;
        flex-wrap: wrap;
    }

    .stat-item {
        padding: 15px 20px;
        border-radius: 12px;
        min-width: 80px;
        text-align: center;
    }

    .stat-item .stat-number {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .stat-item .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
        font-size: 1rem;
        text-align: center;
    }

    .hero-trust {
        font-size: 0.85rem;
        margin-top: 20px;
        text-align: center;
    }

    /* Hero Visual Mobile */
    .hero-visual {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .hero-dashboard {
        padding: 20px 15px;
        margin: 0 15px;
        border-radius: 16px;
        width: calc(100% - 30px);
    }

    .dashboard-header {
        font-size: 0.9rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .tracking-item {
        padding: 12px;
        gap: 12px;
    }

    .item-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .item-title {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .item-status {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .hero-cards {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        align-items: center;
        margin: 20px 0 0;
    }

    .hero-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 15px;
        gap: 15px;
        width: calc(100% - 30px);
        max-width: 350px;
        text-align: left;
        background: rgba(255, 255, 255, 0.95);
        margin: 0 15px;
    }

    .hero-card .card-content {
        flex: 1;
        text-align: left;
    }

    .hero-card .card-content h4 {
        font-size: 1rem;
        margin-bottom: 5px;
        color: var(--text-primary);
    }

    .hero-card .card-content p {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    /* Other Sections Mobile */
    .mission, .why-choose, .services, .service-area, .track-delivery, .contact-form {
        padding: 60px 0;
    }

    .mission h2, .why-choose h2, .services h2, .service-area h2, .track-delivery h2, .contact-form h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cities {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .track-form {
        flex-direction: column;
        gap: 15px;
        max-width: 350px;
        margin: 0 auto;
    }

    .track-form input, .track-form button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 15px 50px;
        min-height: 85vh;
    }

    .hero-content {
        padding: 0 10px;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .hero-stats {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        padding: 12px 15px;
        min-width: 70px;
    }

    .stat-item .stat-number {
        font-size: 1.6rem;
    }

    .stat-item .stat-label {
        font-size: 0.75rem;
    }

    .hero-cards {
        gap: 12px;
        margin: 15px 0 0;
    }

    .hero-card {
        padding: 12px;
        width: calc(100% - 20px);
        margin: 0 10px;
        max-width: 320px;
    }

    .hero-dashboard {
        margin: 0 10px;
        width: calc(100% - 20px);
        padding: 15px 12px;
    }

    .btn-large {
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .cities {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .social-links {
        justify-content: center;
    }

    .mission, .why-choose, .services, .service-area, .track-delivery, .contact-form {
        padding: 50px 0;
    }

    .mission h2, .why-choose h2, .services h2, .service-area h2, .track-delivery h2, .contact-form h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 10px;
        height: 55px;
    }

    .hero {
        padding: 70px 10px 30px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-large {
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .mission, .why-choose, .services, .service-area, .track-delivery, .contact-form {
        padding: 50px 0;
    }

    .mission h2, .why-choose h2, .services h2, .service-area h2, .track-delivery h2, .contact-form h2 {
        font-size: 1.8rem;
    }

    .pillar, .service-card {
        padding: 25px 15px;
    }

    .hero-dashboard {
        padding: 15px 12px;
        margin: 0 5px;
    }
}

/* Fleet Showcase Section */
.fleet-showcase {
    padding: 80px 0;
    background: var(--surface);
    margin: 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fleet-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.fleet-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.8) 0%, rgba(255, 64, 129, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

.fleet-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-info {
    transform: translateY(0);
}

.fleet-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.fleet-info p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Professional Fleet Section */
.professional-fleet {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
    color: white;
}

.fleet-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.fleet-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fleet-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature i {
    font-size: 1.5rem;
    color: #ff4081;
}

.feature span {
    font-weight: 600;
    font-size: 1.1rem;
}

.fleet-image-container {
    position: relative;
}

The CSS has been updated to fix spacing and layout issues, including the hero section, mission statement, fleet showcase, and why choose us section, ensuring proper alignment and visual appeal.
```.fleet-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.fleet-main-image:hover {
    transform: scale(1.05);
}

/* Operational Excellence Section */
.operational-excellence {
    padding: 100px 0;
    background: var(--surface);
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.excellence-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.excellence-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.9) 0%, rgba(255, 64, 129, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.excellence-image:hover .image-overlay {
    opacity: 1;
}

.excellence-image:hover img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.excellence-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.excellence-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.excellence-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Premium Service Section */
.premium-service {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.premium-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.premium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.8) 0%, rgba(255, 64, 129, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-content {
    text-align: center;
    color: white;
    max-width: 800px;
}

.premium-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.premium-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.premium-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.premium-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.premium-feature i {
    font-size: 2rem;
    color: #ff4081;
    margin-bottom: 5px;
}

.premium-feature span {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

/* Advanced Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.fleet-card.animate {
    animation: fadeInScale 0.8s ease forwards;
}

.fleet-card[data-delay="200"].animate {
    animation-delay: 0.2s;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .fleet-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .fleet-text h2 {
        font-size: 2.5rem;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .excellence-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fleet-features {
        gap: 15px;
    }

    .premium-features {
        gap: 20px;
    }

    .premium-feature {
        min-width: 120px;
        padding: 15px;
    }

    .excellence-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-service {
        height: 500px;
    }

    .premium-content h2 {
        font-size: 2rem;
    }

    .premium-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .fleet-text h2 {
        font-size: 2rem;
    }

    .excellence-content h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .premium-features {
        flex-direction: column;
        align-items: center;
    }

    .premium-feature {
        width: 100%;
        max-width: 200px;
    }
}

/* Ensure all images are visible */
.fleet-image img, 
.excellence-image img, 
.premium-bg img,
.fleet-main-image {
    opacity: 1 !important;
    display: block;
    max-width: 100%;
    height: auto;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e88e5 0%, #ff4081 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-logo {
    margin-bottom: 30px;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}