.bg-gradient-primary {
    background: linear-gradient(135deg, #2937f0 0%, #9f1ae2 100%);
}

.bg-darker {
    background-color: #1a1a1a;
}

.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.rounded-4 {
    border-radius: 1rem;
}

.min-vh-85 {
    min-height: 85vh;
}

.bike-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bike-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bike-card:hover .bike-overlay {
    opacity: 1;
}

.step-card {
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.floating-card {
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.stats-card {
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 3;
}

.hero-image {
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.trust-badges .badge {
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badges .badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3) !important;
}

.btn-warning {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border: none;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(41, 55, 240, 0.1);
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff !important;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #2937f0;
}

.btn-primary {
    background-color: #2937f0;
    border-color: #2937f0;
}

.btn-primary:hover {
    background-color: #1e2bd8;
    border-color: #1e2bd8;
}

.text-primary {
    color: #2937f0 !important;
}

.animate__animated {
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .min-vh-85 {
        min-height: 60vh;
    }

    .hero-content {
        text-align: center;
        padding: 3rem 0;
    }

    .trust-badges, .hero-cta {
        justify-content: center;
    }
} 