/* About Our Bikes Page Specific Styles */

.rid-menubar ul li a {
    font-size: 15px !important;
    margin-right: 20px !important;
}

.bikes-container {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    min-height: 100vh;
    padding: 60px 0;
}

.main-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F3364F, #d12a3f);
    border-radius: 2px;
}

.bikes-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(243, 54, 79, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.bikes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 54, 79, 0.15);
}

.card-header-custom {
    background: linear-gradient(135deg, #F3364F 0%, #d12a3f 100%);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
    text-align: center;
}

.header-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
}

.card-body-custom {
    padding: 2.5rem;
    background: white;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    text-align: justify;
}

.features-section {
    background: #fff5f6;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #F3364F;
}

.features-title {
    color: #F3364F;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.category-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(243, 54, 79, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #F3364F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 54, 79, 0.15);
}

.category-title {
    color: #F3364F;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.category-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.included-features {
    background: #F3364F;
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.included-features h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.maintenance-highlight {
    background: linear-gradient(135deg, #fff5f6 0%, #ffeef0 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #F3364F;
    text-align: center;
}

.maintenance-highlight h5 {
    color: #F3364F;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.maintenance-highlight p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.bike-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    border: 2px dashed #F3364F;
    color: #F3364F;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bikes-container {
        padding: 30px 0;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .card-body-custom {
        padding: 1.5rem;
    }

    .bike-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .intro-text {
        font-size: 1rem;
    }

    .header-title {
        font-size: 1.1rem;
    }
}
