:root {
    --banzi-blue: #0085CA;
    --banzi-dark-blue: #005580;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--banzi-blue);
    transform-origin: 0%;
    z-index: 1000;
}


/* Background Styles */
.gradient-bg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/Hero Background.jpg');
    background-size: cover;
    background-position: center;
}

/* Shadow Effects */
.custom-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Timeline Styles */
.timeline-dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--banzi-blue);
    border-radius: 50%;
    position: absolute;
    left: 0;
    transform: translateX(-50%);
}

.timeline-line {
    width: 2px;
    background-color: var(--banzi-blue);
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 0;
    transform: translateX(-50%);
}

/* Scroll Animations */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
#mobileMenu {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#mobileMenu.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

#mobileMenu:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Form Styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--banzi-blue);
    box-shadow: 0 0 0 2px rgba(0, 133, 202, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-line, .timeline-dot {
        left: 2px;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    #product-icon {
        font-size: 1.5rem;
    }
    
    .truck {
        font-size: 2rem;
        bottom: 40px;
    }
    
    .road {
        height: 60px;
    }
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.2s ease;
}

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

/* Button States */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Print Styles */
@media print {
    .scroll-animation {
        opacity: 1;
        transform: none;
    }
    
    .gradient-bg {
        background: none;
        color: black;
    }
    
    .road, .truck, #product-icon {
        display: none;
    }
}