﻿/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.site-header .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: background 0.5s;
}

.hero-icon {
    animation: popIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    animation: fadeInDown 1s 0.2s both;
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-animated {
    font-size: 1.5rem;
    color: #6366f1;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s 0.5s both;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(99,102,241,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 24px rgba(99,102,241,0.18);
}

/* Dynamic Text in Hero Section */
.dynamic-text {
    display: inline-block;
    transition: opacity 0.4s, transform 0.4s;
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

/* Interactive Service Cards */
.feature-card {
    background: linear-gradient(120deg, #fff 60%, #f0f4ff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(99,102,241,0.13);
    background: linear-gradient(120deg, #e0e7ff 60%, #fff 100%);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s, transform 0.3s;
}

.feature-card:hover i {
    color: #6366f1 !important;
    transform: scale(1.15) rotate(-8deg);
}

/* Services Section */
.services-section h2 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

.service-icon {
    max-width: 80px;
}

/* Services Grid Alignment */
.services-grid .row {
    align-items: flex-start;
    text-align: center;
}
.services-grid .col-md-4 {
    display: flex;
    justify-content: center;
}

/* About Section */
.about-section {
    background: #f8fafc;
}
.about-section h2 {
    color: #1e293b;
}
.about-section ul li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Featured Bikes Section */
.featured-bikes-section {
    background: #fff;
}
.featured-bikes-section .feature-card {
    min-height: 260px;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s, border 0.3s;
}
.featured-bikes-section .feature-card:hover {
    box-shadow: 0 8px 32px rgba(99,102,241,0.13);
    border: 1.5px solid #6366f1;
}

/* Quick Links Section */
.quick-links-section {
    background: #f1f5f9;
}
.quick-links-section .btn {
    min-width: 180px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.quick-links-section .btn:hover {
    background: #6366f1;
    color: #fff;
    box-shadow: 0 2px 12px rgba(99,102,241,0.13);
}

/* FAQ Section */
.faq-section {
    background: #fff;
}
.faq-section .accordion-button {
    font-weight: 500;
    color: #1e293b;
    background: #f8fafc;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
}
.faq-section .accordion-button:not(.collapsed) {
    background: #6366f1;
    color: #fff;
}
.faq-section .accordion-body {
    background: #f1f5f9;
    color: #334155;
}

/* Contact Section */
.contact-section .form-control {
    border-radius: 0;
}

/* Footer */
.footer-section {
    font-size: 0.9rem;
}

.footer-section .social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s;
}
.footer-section .social-icons a:hover {
    color: #007bff;
}

/* Remove video/image hero styles */
.hero-video-section, .hero-video-section .hero-video, .hero-video-section .hero-overlay {
    display: none !important;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-animated { font-size: 1.1rem; }
}
