/* Bootstrap Variables Override */
:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;
    --bs-secondary: #64748b;
    --bs-success: #10b981;
    --bs-info: #3b82f6;
    --bs-warning: #f59e0b;
    --bs-danger: #dc2626;
    --bs-light: #f8fafc;
    --bs-dark: #1e293b;
    --bs-font-sans-serif: 'Inter', sans-serif;
    
    /* Professional Theme Enhancements */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(37, 99, 235, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Styles that complement Bootstrap */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    padding-top: 76px;
    position: relative;
    overflow-x: hidden;
    color: #1e293b;
    background: #ffffff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Bootstrap Container */
.container-fluid {
    padding: 0 15px;
}

/* Custom spacing utilities */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    color: #1e293b;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: #334155;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #475569;
}

p {
    margin-bottom: 1.25rem;
    color: #64748b;
    line-height: 1.75;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: #475569;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    background-size: 200% auto;
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #2563eb;
}

/* Background Animations */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.shape:nth-child(3) {
    left: 35%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.shape:nth-child(5) {
    left: 70%;
    animation-delay: 8s;
}

.shape:nth-child(6) {
    left: 85%;
    animation-delay: 10s;
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes truckMove {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100vw); }
}

@keyframes planeMove {
    0% { transform: translateX(-50px) translateY(0px); }
    50% { transform: translateX(50vw) translateY(-20px); }
    100% { transform: translateX(100vw) translateY(0px); }
}

@keyframes containerFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Professional Card Enhancements */
.card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.service-card {
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    background: white;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(59, 130, 246, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 0 30px rgba(37, 99, 235, 0.4); }
}

.shape-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 10px;
}

.shape-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border-radius: 50%;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid #2563eb;
}

/* Logistics Graphics */
.logistics-truck {
    position: absolute;
    bottom: 10%;
    left: -100px;
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 5px 15px 5px 5px;
    animation: truckMove 15s infinite linear;
    opacity: 0.7;
}

.logistics-truck::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    border-radius: 5px;
}

.logistics-truck::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 12px;
    height: 12px;
    background: #1f2937;
    border-radius: 50%;
    box-shadow: 40px 0 0 #1f2937;
}

.logistics-plane {
    position: absolute;
    top: 20%;
    left: -50px;
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    border-radius: 30px 5px 5px 30px;
    animation: planeMove 20s infinite linear;
    opacity: 0.6;
}

.logistics-plane::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 15px;
    width: 30px;
    height: 4px;
    background: #60a5fa;
    border-radius: 2px;
}

.logistics-container {
    position: absolute;
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 3px;
    animation: containerFloat 4s ease-in-out infinite;
}

.logistics-container::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: #b91c1c;
    border-radius: 1px;
}

.warehouse-icon {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #374151, #4b5563);
    position: relative;
}

.warehouse-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 5px;
    right: 5px;
    height: 10px;
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Decorative Floating Elements */
.section-decorator {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.section-decorator.truck-1 {
    top: 10%;
    right: 5%;
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 3px 8px 3px 3px;
    animation: containerFloat 6s ease-in-out infinite;
}

.section-decorator.plane-1 {
    top: 70%;
    left: 3%;
    width: 40px;
    height: 15px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    border-radius: 20px 3px 3px 20px;
    animation: containerFloat 8s ease-in-out infinite reverse;
}

.section-decorator.container-1 {
    bottom: 20%;
    right: 8%;
    width: 35px;
    height: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 2px;
    animation: containerFloat 5s ease-in-out infinite;
}

/* Enhanced Bootstrap Navbar */
.navbar {
    transition: var(--transition);
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: #1e293b !important;
}

.navbar-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Custom navbar toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* Floating Help Button */
.floating-help {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.help-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.help-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
    color: white;
}

.help-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1e293b;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.help-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: #1e293b;
}

.floating-help:hover .help-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(241, 245, 249, 1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 60%);
    pointer-events: none;
}

.hero .logistics-truck {
    animation-delay: 2s;
}

.hero .logistics-plane {
    animation-delay: 5s;
}

.hero-logistics-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-logistics-bg .logistics-container:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.hero-logistics-bg .logistics-container:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.hero-logistics-bg .logistics-container:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.hero-logistics-bg .logistics-container:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-image .bg-primary {
    background: linear-gradient(135deg, var(--bs-primary), #3b82f6) !important;
    box-shadow: 0 1rem 3rem rgba(37, 99, 235, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.hero-image .bg-primary:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.page-header h1 {
    color: white;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(-50px) translateY(-50px) rotate(360deg); }
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    border-radius: 6px;
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    margin-top: -2px;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    color: #2563eb;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc url('../images/services-bg.svg') center/cover no-repeat;
    background-attachment: fixed;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #ffffff url('../images/services-bg.svg') center/cover no-repeat;
    background-attachment: fixed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.service-image {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 3rem;
    text-align: center;
    color: #2563eb;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-size: 50px 50px;
    background-repeat: repeat;
}

/* Service-specific backgrounds */
.service-ecommerce .service-image::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="8" y="15" width="34" height="20" fill="%232563eb" rx="2"/><rect x="15" y="12" width="20" height="8" fill="%233b82f6" rx="1"/><circle cx="12" cy="38" r="2" fill="%231f2937"/><circle cx="38" cy="38" r="2" fill="%231f2937"/></svg>');
}

.service-art .service-image::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="10" width="30" height="20" fill="%232563eb" rx="2"/><rect x="5" y="15" width="20" height="15" fill="%233b82f6" rx="1"/></svg>');
}

.service-rail .service-image::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="5" y="20" width="40" height="8" fill="%232563eb" rx="4"/><circle cx="12" cy="32" r="3" fill="%231e40af"/><circle cx="38" cy="32" r="3" fill="%231e40af"/></svg>');
}

.service-road .service-image::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="15" width="25" height="15" fill="%232563eb" rx="3"/><rect x="5" y="20" width="15" height="8" fill="%233b82f6" rx="2"/><circle cx="15" cy="35" r="3" fill="%231f2937"/><circle cx="30" cy="35" r="3" fill="%231f2937"/></svg>');
}

.service-air .service-image::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><ellipse cx="25" cy="25" rx="20" ry="5" fill="%232563eb"/><rect x="20" y="15" width="10" height="3" fill="%233b82f6"/></svg>');
}

.service-warehouse .service-image::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="25,10 5,25 5,40 45,40 45,25" fill="%232563eb"/><rect x="15" y="25" width="8" height="10" fill="%233b82f6"/><rect x="27" y="25" width="8" height="10" fill="%233b82f6"/></svg>');
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-content li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
}

.service-content li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* Service Detail Pages */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background-color: #f8fafc;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-intro {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    display: grid;
    gap: 2rem;
}

.feature-item h3 {
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 i {
    color: #2563eb;
}

.service-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-placeholder {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.additional-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="logistics" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="20" y="40" width="30" height="15" fill="%232563eb" opacity="0.03" rx="2"/><circle cx="60" cy="70" r="8" fill="%233b82f6" opacity="0.02"/><polygon points="150,30 130,50 170,50" fill="%2360a5fa" opacity="0.02"/></pattern></defs><rect width="200" height="200" fill="url(%23logistics)"/></svg>');
    pointer-events: none;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.service-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95)), url('../images/stats-bg.svg') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statsPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><rect x="10" y="10" width="15" height="3" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23statsPattern)"/></svg>');
    animation: float 30s infinite linear;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #cbd5e1;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

/* Company Stats */
.company-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.company-stats .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
    background: #ffffff url('../images/about-bg.svg') center/cover no-repeat;
    background-attachment: fixed;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-intro {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-placeholder {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    color: #2563eb;
}

.mission-values {
    padding: 80px 0;
    background-color: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.mv-card ul {
    list-style: none;
    text-align: left;
}

.mv-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
}

.mv-card li::before {
    content: '→';
    color: #2563eb;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Leadership Team */
.leadership {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 2rem;
    text-align: center;
    color: #2563eb;
}

.member-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.member-info {
    padding: 2rem;
}

.member-title {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: #2563eb;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: #6d28d9;
}

/* Facilities */
.facilities {
    padding: 80px 0;
    background-color: #f8fafc;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.facility-card ul {
    list-style: none;
    margin-top: 1rem;
}

.facility-card li {
    padding: 0.3rem 0;
    color: #64748b;
    position: relative;
}

.facility-card li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item i {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Certifications & Awards */
.certifications-awards {
    padding: 80px 0;
    background-color: #f8fafc;
}

.ca-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.cert-list,
.award-list {
    display: grid;
    gap: 1.5rem;
}

.cert-item,
.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cert-item i,
.award-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.cert-item h4,
.award-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.cert-item p,
.award-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #ffffff url('../images/contact-bg.svg') center/cover no-repeat;
    background-attachment: fixed;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.contact-info-container {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.hours,
.emergency {
    font-size: 0.9rem;
    font-style: italic;
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #6d28d9;
}

/* Office Locations */
.office-locations {
    padding: 80px 0;
    background-color: #f8fafc;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.location-badge {
    background: #2563eb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.location-details i {
    color: #2563eb;
    width: 16px;
}

.location-services h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.location-services ul {
    list-style: none;
}

.location-services li {
    padding: 0.2rem 0;
    color: #64748b;
    position: relative;
}

.location-services li::before {
    content: '→';
    color: #2563eb;
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #f8fafc;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    color: #1e293b;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Emergency Contact */
.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.emergency-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 3rem;
    color: #dc2626;
    flex-shrink: 0;
}

.emergency-content h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, #3b82f6, #60a5fa, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.contact-info {
    display: grid;
    gap: 0.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #3b82f6;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .ca-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
    }

    .emergency-buttons {
        flex-direction: column;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .features-grid,
    .team-grid,
    .facilities-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particle Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 1;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Interactive Elements */
.interactive-element {
    transition: all 0.3s ease;
}

.interactive-element:hover {
    transform: translateY(-3px);
}

/* Responsive Logo */
@media (max-width: 576px) {
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .floating-help {
        left: 20px;
        bottom: 20px;
    }
    
    .go-to-top {
        right: 20px;
        bottom: 20px;
    }
}

/* Form Validation Styles */
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
    border-color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Loading States */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image img,
.service-image img,
.team-member img,
.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover img,
.service-card:hover .service-image img,
.team-member:hover img {
    transform: scale(1.05);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 20px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ==========================
   PROFESSIONAL THEME ENHANCEMENTS
   ========================== */

/* Modern Glassmorphism Effects */
.card.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Professional Spacing System */
.section-spacing {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
}

/* Enhanced Shadow System */
.shadow-soft {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.shadow-medium {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.shadow-hard {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.shadow-primary-glow {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25) !important;
}

/* Modern Button Enhancements */
.btn-outline-primary {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-3px);
}

/* Icon Enhancement */
.feature-icon, .service-icon, .stat-icon {
    background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.feature-icon:hover, .service-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

/* Professional Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Professional Grid Layouts */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.grid-auto-fill {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Enhanced Section Styling */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.15rem;
}

/* Enhanced Stats Section */
.stats-grid {
    gap: 2rem !important;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    padding: 4rem 0 0;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #3b82f6, #2563eb);
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
}

.footer h3, .footer h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    color: #94a3b8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: var(--transition);
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* Enhanced CTA Section */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Professional Navigation Enhancements */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    color: #475569 !important;
    padding: 0.75rem 1.25rem !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px 2px 0 0;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2563eb !important;
}

/* Logo Professional Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.logo-text .logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-text .logo-sub {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Page Headers */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.page-header h1 {
    color: white;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Selection Styling */
::selection {
    background: #2563eb;
    color: white;
}

::-moz-selection {
    background: #2563eb;
    color: white;
}

/* Focus Styles for Accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, .floating-help, .go-to-top, .hero-logistics-bg {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    .page-break {
        page-break-before: always;
    }
}
