/* Classic Logistics Website Styles - Demo 2 */

/* CSS Custom Properties */
:root {
    --navy: #1e3a5f;
    --gold: #f59e0b;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 1.2;
}

/* Custom Color Classes */
.bg-navy { background-color: var(--navy); }
.text-navy { color: var(--navy); }
.bg-gold { background-color: var(--gold); }
.text-gold { color: var(--gold); }
.border-navy { border-color: var(--navy); }
.border-gold { border-color: var(--gold); }

/* Navigation Styles */
#navbar {
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Top Bar Styles */
.bg-navy a:hover {
    color: var(--gold) !important;
}

/* Hero Section */
#home {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Service Items - AOS only, no GSAP conflict */
.service-item {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 8px;
}

.service-item:hover {
    background-color: #f8fafc;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.1);
}

/* Industry Cards - AOS only */
.industry-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-card img {
    transition: transform 0.3s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

/* Button Styles */
.btn-primary {
    background: var(--navy);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
}

.btn-primary:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 12px 30px;
    border: 2px solid var(--navy);
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.2);
}

/* Card Styles */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* Statistics Section */
.stats-section {
    background: var(--navy);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
}

/* Testimonials */
.testimonials-swiper {
    padding: 20px 0 60px;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.3);
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

/* Tracking Section */
.tracking-section {
    background: var(--navy);
    color: white;
    position: relative;
}

.tracking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.tracking-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.tracking-timeline {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.timeline-dot.completed {
    background: #10b981;
}

.timeline-dot.current {
    background: var(--gold);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex-grow: 1;
}

.timeline-title {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.timeline-location {
    color: var(--medium-gray);
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* Contact Section */
.contact-item {
    text-align: center;
    padding: 2rem 1rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--navy);
}

/* Footer */
footer {
    background: #1f2937;
    color: #d1d5db;
}

footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

footer a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: #374151;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-item:hover {
        transform: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-item {
        margin-bottom: 2rem;
    }

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

    .contact-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .tracking-form {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .fixed,
    nav,
    button,
    .tracking-section,
    footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }

    h1, h2, h3 {
        page-break-after: avoid;
        color: black;
    }

    .card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}

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

/* Focus Styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:not(.nav-link):focus {
    outline: 3px solid var(--official-gold);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .bg-navy {
        background-color: #000000 !important;
    }

    .text-navy {
        color: #000000 !important;
    }

    .bg-gold {
        background-color: #ffff00 !important;
    }

    .text-gold {
        color: #ffff00 !important;
    }

    .card {
        border: 2px solid #000000 !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: bold; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.rounded { border-radius: 6px; }
.rounded-lg { border-radius: 12px; }
.rounded-full { border-radius: 50%; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }

/* Corporate Professional Elements */
.corporate-header {
    background: linear-gradient(135deg, var(--navy) 0%, #2563eb 100%);
    color: white;
    padding: 1rem 0;
}

.professional-border {
    border: 3px solid var(--gold);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.professional-border::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(45deg, var(--navy), var(--gold));
    border-radius: 12px;
    z-index: -1;
}

/* Classic Business Styling */
.business-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.business-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.formal-list {
    list-style: none;
    padding: 0;
}

.formal-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.5rem;
}

.formal-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.formal-list li:last-child {
    border-bottom: none;
}

/* Professional Typography */
.professional-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.corporate-heading {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
}

/* Trust Indicators */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.trust-badge i {
    margin-right: 0.5rem;
    color: var(--gold);
}

/* Classic Layout Elements */
.classic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.classic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

/* Image Overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 95, 0.8), rgba(245, 158, 11, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Quote Styling */
.professional-quote {
    background: #f8fafc;
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.professional-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: 1rem;
    line-height: 1;
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Status Indicators */
.status-online {
    position: relative;
}

.status-online::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
}

/* Professional Gradients */
.gradient-navy {
    background: linear-gradient(135deg, var(--navy) 0%, #2563eb 100%);
}

.gradient-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Classic Professional Styles */
.classic-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.classic-button {
    background: var(--navy);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.classic-button:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.2);
}

.classic-section {
    padding: 5rem 0;
}

.classic-divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Traditional Form Styling */
.traditional-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.traditional-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Georgia', serif;
}

.traditional-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Classic Navigation Enhancement */
.classic-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
    border-bottom: 3px solid var(--gold);
}

.classic-nav-link {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    position: relative;
}

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

.classic-nav-link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.classic-nav-link:hover::before {
    width: 100%;
}
