* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Arial', sans-serif;
    color: #333333;
    background: #FFFFFF;
    line-height: 1.6;
}
header {
    background: #FFFFFF;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.top-bar, .top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contact-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
}
.contact-info span i {
    margin-right: 8px;
    color: #e4032e;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: #333333;
    font-size: 18px;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #003087;
}
.main-logo, .footer-logo, .logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
.top-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.top-nav-links, .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.top-nav-links li, .nav-links li {
    position: relative;
}
.top-nav-links li a, .nav-links li a {
    color: #333333;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s;
}
.top-nav-links li a:hover, .top-nav-links li a.active, .nav-links li a:hover, .nav-links li a.active {
    color: #003087;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    top: 100%;
    left: 0;
    min-width: 150px;
    z-index: 1000;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    font-size: 14px;
}
.phone-box {
    background: #e4032e;
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.phone-box i {
    margin-right: 10px;
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #003087;
    color: #FFFFFF;
    border-top: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}
.dealer-name {
    font-size: 20px;
    font-weight: bold;
}
.premium-label {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
}
.slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slider-controls button {
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: background 0.3s;
}
.slider-controls button:hover {
    background: rgba(0, 0, 0, 0.9);
}
.prev {
    margin-left: 20px;
}
.next {
    margin-right: 20px;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: #003087;
}
.our-bikes, .more-from-us, .about, .services, .finance, .insurance, .community, .contact {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.our-bikes h2, .more-from-us h2, .about h1, .about h2, .services h1, .services h2, .finance h1, .finance h2, .insurance h1, .insurance h2, .community h1, .community h2, .contact h1 {
    color: #333333;
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.about h2, .services h2, .finance h2, .insurance h2, .community h2 {
    font-size: 28px;
}
.about-banner, .services-banner, .finance-banner, .insurance-banner, .community-banner, .contact-banner {
    background: url('images/contact-banner.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}
.services-banner {
    background: url('images/service-banner.jpg') center/cover no-repeat;
}
.about-banner {
    background: url('images/about-banner.jpg') center/cover no-repeat;
}
.finance-banner {
    background: url('images/finance-banner.jpg') center/cover no-repeat;
}
.insurance-banner {
    background: url('images/insurance-banner.jpg') center/cover no-repeat;
}
.community-banner {
    background: url('images/community-banner.jpg') center/cover no-repeat;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.about-banner h1, .services-banner h1, .finance-banner h1, .insurance-banner h1, .community-banner h1, .contact-banner h1 {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 36px;
}
.contact-details {
    text-align: center;
    margin-bottom: 40px;
}
.contact-details p {
    font-size: 18px;
    color: #444444;
    margin-bottom: 15px;
}
.contact-details p strong {
    color: #003087;
}
.map, .map-container {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}
.map iframe, .map-container iframe {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    width: 100%;
    height: 400px;
}
.about-content, .services-content, .finance-content, .insurance-content, .community-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.about-text, .services-text, .finance-text, .insurance-text, .community-text {
    flex: 1;
    min-width: 300px;
}
.about-text p, .services-text p, .finance-text p, .insurance-text p, .community-text p {
    font-size: 16px;
    color: #444444;
    margin-bottom: 20px;
}
.about-text ul, .services-text ul, .finance-text ul, .insurance-text ul, .community-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.about-text ul li, .services-text ul li, .finance-text ul li, .insurance-text ul li, .community-text ul li {
    font-size: 16px;
    color: #444444;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}
.about-text ul li::before, .services-text ul li::before, .finance-text ul li::before, .insurance-text ul li::before, .community-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #003087;
    position: absolute;
    left: 0;
}
.about-image, .services-image, .finance-image, .insurance-image, .community-image {
    flex: 1;
    min-width: 300px;
}
.about-image img, .services-image img, .finance-image img, .insurance-image img, .community-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}
.about-image img:hover, .services-image img:hover, .finance-image img:hover, .insurance-image img:hover, .community-image img:hover {
    transform: scale(1.02);
}
.about-highlights, .services-highlights, .finance-highlights, .insurance-highlights, .community-highlights {
    text-align: center;
    background: #f8f8f8;
    padding: 40px 0;
}
.highlight-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.highlight-item {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}
.highlight-item:hover {
    transform: translateY(-5px);
}
.highlight-item i {
    font-size: 40px;
    color: #003087;
    margin-bottom: 15px;
}
.highlight-item h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}
.highlight-item p {
    font-size: 14px;
    color: #444444;
}
.book-service, .emi-form, .insurance-form, .community-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}
.service-form, .emi-form, .insurance-form, .community-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
    text-align: left;
}
.form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #003087;
    outline: none;
}
.form-group textarea {
    grid-column: span 2;
    resize: vertical;
}
.form-error {
    color: #e4032e;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.service-form button, .emi-form button, .insurance-form button, .community-form button {
    grid-column: span 2;
    margin-top: 20px;
    padding: 12px 20px;
    background: #003087;
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.service-form button:hover, .emi-form button:hover, .insurance-form button:hover, .community-form button:hover {
    background: #002060;
    transform: scale(1.05);
}
.emi-result {
    margin-top: 20px;
    font-size: 18px;
    color: #003087;
    font-weight: bold;
    text-align: center;
}
.filter-buttons {
    margin-bottom: 30px;
    text-align: center;
}
.filter-btn {
    padding: 12px 24px;
    margin: 0 10px;
    background: #FFFFFF;
    color: #003087;
    border: 2px solid #003087;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
    background: #003087;
    color: #FFFFFF;
}
.bike-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bike-item {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: #333333;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    padding: 20px;
}
.bike-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.bike-item img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}
.bike-item h3 {
    margin: 0;
    font-size: 20px;
    color: #003087;
    font-weight: bold;
}
.bike-item p {
    font-size: 14px;
    color: #444444;
    margin: 10px 0;
    min-height: 40px;
}
.bike-item .btn {
    margin-top: 10px;
}
.no-bikes {
    font-size: 16px;
    color: #444444;
}
.more-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.more-item {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}
.more-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
.more-item h3 {
    color: #333333;
    font-size: 20px;
    margin: 10px 0;
}
.more-item p {
    font-size: 16px;
    color: #444444;
    margin-bottom: 15px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #003087;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 25px;
    transition: background 0.3s ease-in-out, transform 0.3s;
}
.btn:hover {
    background: #002060;
    transform: scale(1.05);
}
footer {
    background: #f8f8f8;
    color: #333333;
    padding: 30px 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 25px;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 15px;
}
.footer-section h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
}
.footer-section p, .footer-section ul li a {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
}
.footer-section p i {
    margin-right: 10px;
    color: #003087;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #003087;
}
.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #003087;
    color: #FFFFFF;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.3s;
}
.whatsapp-float:hover {
    background: #20B858;
    transform: scale(1.05);
}

/* ===== Community Page Styles (Updated with Suzuki Blue) ===== */
.community-hero {
    background: linear-gradient(rgba(0, 48, 135, 0.9), rgba(0, 91, 170, 0.9)), url('images/community-banner.jpg') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.community-intro {
    background-color: #003087;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 1200px;
}

.community-intro h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 32px;
}

.community-intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.community-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #003087;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #003087;
    margin: 15px auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-content {
    padding: 20px;
}

.benefit-content h3 {
    color: #003087;
    margin-top: 0;
}

.events-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background: white;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #003087;
    border-radius: 50%;
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: 29px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: #003087;
}

.timeline-item:last-child:after {
    display: none;
}

.event-date {
    color: #003087;
    font-weight: bold;
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 48, 135, 0.8);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 350px;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-size: 60px;
    color: rgba(0, 48, 135, 0.1);
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin: 0;
    color: #003087;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.join-community {
    background: linear-gradient(rgba(0, 48, 135, 0.9), rgba(0, 48, 135, 0.9)), url('images/community-join.jpg') center/cover;
    padding: 60px 20px;
    text-align: center;
    color: white;
    border-radius: 8px;
    margin: 50px 0;
}

.join-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.join-form input, .join-form select {
    padding: 12px;
    border-radius: 4px;
    border: none;
}

.join-form input[type="email"] {
    grid-column: span 2;
}

.join-form button {
    grid-column: span 2;
    background: white;
    color: #003087;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.join-form button:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .top-bar, .top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 20px;
    }
    .contact-info, .social-links {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .main-logo, .logo img {
        align-self: center;
    }
    .top-nav, .main-nav {
        width: 100%;
        display: none;
    }
    .top-nav.active, .main-nav.active {
        display: block;
    }
    .top-nav-links, .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: #FFFFFF;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .top-nav-links li a, .nav-links li a {
        padding: 10px 30px;
        width: 100%;
        text-align: center;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
    }
    .phone-box {
        margin: 10px 0;
        align-self: center;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .main-nav {
        flex-direction: column;
        padding: 15px 20px;
    }
    .slider {
        height: 60vh;
    }
    .bike-items, .highlight-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .more-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content, .services-content, .finance-content, .insurance-content, .community-content {
        flex-direction: column;
        gap: 20px;
    }
    .about-banner, .services-banner, .finance-banner, .insurance-banner, .community-banner, .contact-banner {
        padding: 60px 20px;
    }
    .about-banner h1, .services-banner h1, .finance-banner h1, .insurance-banner h1, .community-banner h1, .contact-banner h1 {
        font-size: 28px;
    }
    .contact-details p {
        font-size: 16px;
    }
    .map iframe, .map-container iframe {
        height: 300px;
    }
    .service-form, .emi-form, .insurance-form, .community-form {
        grid-template-columns: 1fr;
    }
    .form-group textarea, .service-form button, .emi-form button, .insurance-form button, .community-form button {
        grid-column: span 1;
    }
    .join-form {
        grid-template-columns: 1fr;
    }
    .join-form input[type="email"] {
        grid-column: span 1;
    }
    .join-form button {
        grid-column: span 1;
    }
    .community-hero {
        height: 300px;
    }
    .community-intro {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 50vh;
    }
    .our-bikes h2, .more-from-us h2, .about h1, .services h1, .finance h1, .insurance h1, .community h1, .contact h1 {
        font-size: 28px;
    }
    .about h2, .services h2, .finance h2, .insurance h2, .community h2 {
        font-size: 22px;
    }
    .bike-items, .more-items, .highlight-items {
        grid-template-columns: 1fr;
    }
    .contact-details p {
        font-size: 14px;
    }
    .map iframe, .map-container iframe {
        height: 250px;
    }
    .footer-map iframe, .footer-section iframe {
        height: 200px;
    }
    .about-banner h1, .services-banner h1, .finance-banner h1, .insurance-banner h1, .community-banner h1, .contact-banner h1 {
        font-size: 24px;
    }
    .community-hero h1 {
        font-size: 28px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .community-intro h2 {
        font-size: 24px;
    }
    .community-intro p {
        font-size: 16px;
    }
}