/* LS Logistic - Custom Styles */

:root {
    --primary-orange: #ff7e29;
    --secondary-blue: #3d75c7;
    --dark: #0f172a;
    --gray: #475569;
    --light-bg: #f8fafc;
}

body {
    background-color: var(--light-bg);
    color: var(--gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
}

/* Glassmorphism Effects */
.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.glass-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 126, 41, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(255, 126, 41, 0.15);
}

/* Premium Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9a5a 100%);
    box-shadow: 0 4px 15px rgba(255, 126, 41, 0.3);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e66f1f 0%, #ff7e29 100%);
    box-shadow: 0 8px 25px rgba(255, 126, 41, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #5a8fd9 100%);
    box-shadow: 0 4px 15px rgba(61, 117, 199, 0.3);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2f5fa8  0%, #3d75c7 100%);
    box-shadow: 0 8px 25px rgba(61, 117, 199, 0.4);
    transform: translateY(-2px);
}

.arrow-circle {
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-circle,
.btn-secondary:hover .arrow-circle {
    transform: translateX(4px) rotate(45deg);
}

/* Typography */
.text-gradient-brand {
    color: var(--primary-orange);
}

/* Ambient Background */
.glow-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    background-color: #f1f5f9;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 126, 41, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(61, 117, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(255, 126, 41, 0.08) 0%, transparent 50%);
}

.bg-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Animations */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.animate-scroll-left {
    animation: scroll-left 30s linear infinite;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Navbar Scroll Effects */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(30px) !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15) !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.navbar-scrolled .logo-container {
    transform: scale(0.9);
}

/* Logo Visibility */
.logo-container {
    transition: transform 0.3s ease;
}

.logo-container img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1rem 0;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInMenu 0.4s ease forwards;
}

.mobile-menu.active a:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.active a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { animation-delay: 0.3s; }
.mobile-menu.active a:nth-child(5) { animation-delay: 0.4s; }
.mobile-menu.active a:nth-child(6) { animation-delay: 0.5s; }
.mobile-menu.active a:nth-child(7) { animation-delay: 0.6s; }

@keyframes slideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu a:hover {
    color: var(--primary-orange);
}
