/* Custom Project Styles */
.glass-effect {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.8);
}

.dark .glass-effect {
    background-color: rgba(15, 23, 42, 0.8);
}

.hero-gradient {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/Image_202602141029.jpeg');
    background-size: cover;
    background-position: center;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Mobile Menu Styles */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#mobile-menu-overlay.active {
    display: flex;
}

.nav-link-mobile {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: #EE8C2B;
}

#close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.logo-filter {
    filter: brightness(0) saturate(100%) invert(67%) sepia(35%) saturate(1131%) hue-rotate(344deg) brightness(98%) contrast(93%);
}
/* Preloader Styles */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 300px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.truck-wrapper {
    position: absolute;
    left: -100px;
    animation: driveAcross 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    display: flex;
    align-items: center;
}

.truck-icon {
    font-size: 56px !important;
    color: #EE8C2B;
}

.speed-lines {
    width: 40px;
    height: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-right: -10px;
}

.speed-line {
    height: 2px;
    background: #EE8C2B;
    border-radius: 2px;
    opacity: 0.6;
}

.speed-line:nth-child(1) { width: 30px; animation: speedMove 0.2s linear infinite; }
.speed-line:nth-child(2) { width: 40px; animation: speedMove 0.15s linear infinite; }
.speed-line:nth-child(3) { width: 20px; animation: speedMove 0.25s linear infinite; }

.road-line {
    position: absolute;
    bottom: 30px;
    width: 240px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.road-dash {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #EE8C2B, transparent);
    animation: roadDash 0.6s linear infinite;
}

.loading-text {
    margin-top: 80px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 3px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    gap: 8px;
}

.loading-text span {
    color: #EE8C2B;
    animation: blink 1.2s infinite;
}

@keyframes driveAcross {
    0% { left: -100px; opacity: 0; transform: scale(0.8); }
    15% { opacity: 1; transform: scale(1); }
    45% { left: 50%; transform: translateX(-50%) scale(1.1); }
    55% { left: 50%; transform: translateX(-50%) scale(1.1); }
    85% { opacity: 1; transform: scale(1); }
    100% { left: 400px; opacity: 0; transform: scale(0.8); }
}

@keyframes speedMove {
    0% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(-10px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.6; }
}

@keyframes roadDash {
    from { left: -100%; }
    to { left: 100%; }
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
.speed-line:nth-child(4) { width: 35px; animation: speedMove 0.1s linear infinite; }
.loader-truck-img {
    height: 60px;
    width: auto;
    display: block;
}

.fill-icon {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24 !important;
}

@keyframes ring-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(238, 140, 43, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(238, 140, 43, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(238, 140, 43, 0); }
}

.animate-ring-pulse {
    animation: ring-pulse 2s infinite;
}
