/* Promotion Section */
.promo-section {
    margin-top: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f4f4, #e6e6e6);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    z-index: 0;
}

.promo-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    z-index: 0;
}

.promo-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.promo-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #28a745;
    margin: 15px auto 0;
    border-radius: 2px;
}

.promo-container {
    display: flex;
    overflow: visible;
    position: relative;
    width: 90%;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.promo-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 25px;
    min-width: calc(33.333% - 20px);
    margin-right: 20px;
    transition: all 0.4s ease;
    opacity: 0.9;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.promo-item img:hover {
    transform: scale(1.03);
}

.promo-item h3 {
    font-size: 1.8rem;
    margin-top: 25px;
    color: #333;
    font-weight: 600;
}

.promo-item p {
    font-size: 1rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
    min-height: 80px;
}

.promo-item .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.promo-item .btn:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.4);
}

/* Progressive image loading */
.promo-item img {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    to {
        background-position: -200% 0;
    }
}

/* Navigation controls */
.promo-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.nav-btn {
    background-color: rgba(40, 167, 69, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.nav-btn:hover {
    background-color: rgba(40, 167, 69, 1);
    transform: scale(1.1);
}

.indicator-container {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(40, 167, 69, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: #28a745;
    transform: scale(1.2);
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .promo-item {
        min-width: calc(50% - 20px);
        padding: 20px;
    }
    
    .promo-section h2 {
        font-size: 2.2rem;
    }
    
    .promo-item h3 {
        font-size: 1.6rem;
    }
    
    .promo-item p {
        min-height: 60px;
        font-size: 0.95rem;
    }
}

/* Small Tablet Breakpoint */
@media (max-width: 768px) {
    .promo-section {
        padding: 40px 0;
    }
    
    .promo-container {
        width: 85%;
    }
    
    .promo-item {
        min-width: calc(100% - 20px);
        margin-right: 20px;
    }
    
    .promo-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .promo-item p {
        min-height: auto;
    }
}

/* Mobile Breakpoint */
@media (max-width: 576px) {
    .promo-section {
        padding: 30px 0;
    }
    
    .promo-container {
        width: 90%;
    }
    
    .promo-section h2 {
        font-size: 1.8rem;
    }
    
    .promo-item {
        min-width: calc(100% - 10px);
        margin-right: 10px;
        padding: 15px;
    }
    
    .promo-item h3 {
        font-size: 1.4rem;
        margin-top: 15px;
    }
    
    .promo-item p {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .promo-item img {
        height: 160px;
    }
    
    .promo-item .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Animation for carousel */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-item {
    animation: fadeIn 0.5s ease forwards;
}



/* Bike section  */


/* McBikeWorld Custom Styles - Updated Theme */

/* Hero Section */
.mcbikeworld-hero {
    background: linear-gradient(135deg, #1e8437 0%, #28a745 50%, #34c759 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mcbikeworld-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.mcbikeworld-hero .container {
    position: relative;
    z-index: 1;
}

.mcbikeworld-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.mcbikeworld-hero .lead {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.hero-badges .badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero-badges .badge:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-badges .badge i {
    color: #f8d347;
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f4f4, #e6e6e6);
}

.about-content {
    padding: 2rem;
    position: relative;
}

.experience-bar {
    background-color: #f8f9fa;
    border-left: 4px solid #28a745;
    padding: 0.7rem 1rem;
    font-weight: 600;
    color: #333;
    display: inline-block;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: #1e8437;
    text-decoration: none;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.about-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.badge-large {
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-large i {
    font-size: 1.2rem;
    color: #f8d347;
}

/* Products Section */
.products-section {
    background-color: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #28a745;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #28a745;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: #f8f9fa;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: #28a745;
    color: white;
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.product-card p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* CTA Section - Updated with new gradient background */
.cta-section {
    background: linear-gradient(135deg, #f4f4f4, #e6e6e6);
    color: #333;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    padding: 3rem 0;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #28a745;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta-button:hover {
    background: #1e8437;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.motorcycle-animation {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    color: rgba(40, 167, 69, 0.1); /* Updated to match green theme with lighter opacity */
    transform: rotate(-15deg);
    z-index: 0;
}

/* Optional: Add subtle border to separate from footer if needed */
.cta-section {
    border-bottom: 1px solid #ddd;
}

/* Optional: Add some depth to the CTA section */
.cta-section {
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .about-image-container {
        margin-top: 2rem;
    }
}

/* Add this to your existing stylesheet */
/* These are the animations for the motorcycle icon in the CTA section */
.motorcycle-animation i {
    animation: rideMotorcycle 10s infinite linear;
}

@keyframes rideMotorcycle {
    0% {
        transform: translateX(-500%) rotate(-15deg);
        opacity: 0;
    }
    10% {
        opacity: 0.05;
    }
    90% {
        opacity: 0.05;
    }
    100% {
        transform: translateX(500%) rotate(-15deg);
        opacity: 0;
    }
}