/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

a {
    text-decoration: none;
    color: #0D6EFD;
    /* Suzuki Blue */
    transition: color 0.3s ease;
}

a:hover {
    color: #0a58ca;
    /* Darker Blue */
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    margin: 10px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
}

.primary-btn:hover {
    background-color: #0a58ca;
    /* Darker Blue */
}

.secondary-btn {
    background-color: #6c757d;
    /* Grey/Neutral */
    color: #fff;
}

.secondary-btn:hover {
    background-color: #5a6268;
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.logo img {
    height: 35px;
    /* Adjust as needed */
    width: auto;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    position: relative;
    margin-left: 30px;
}

.main-nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-top: 3px solid #0D6EFD;
    /* Suzuki Blue */
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
    color: #555;
}

.contact-info i {
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-right: 5px;
}

/* Hero Slider (Carousel) - Homepage Specific */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Adjust height as needed */
    overflow: hidden;
    background-color: #000;
    /* Fallback for image loading */
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    /* Darken image for better text contrast */
}

.slide-caption {
    position: absolute;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.slide-caption h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption h2::after {
    background-color: #fff;
    /* White line for contrast */
}

.slide-caption p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.slider-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #0D6EFD;
    /* Suzuki Blue */
    border: 2px solid #fff;
}

/* About Summary Section - Homepage Specific */
.about-summary {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 400px;
    /* Ensures content doesn't get too narrow */
}

.about-text h2 {
    text-align: left;
    margin-top: 0;
}

.about-text h2::after {
    margin: 10px 0 0 0;
    /* Align line with left text */
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 400px;
    /* Ensures image doesn't get too small */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Models Section - Homepage Specific */
.featured-models {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.model-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.model-card img {
    max-width: 100%;
    height: 180px;
    /* Fixed height for consistency */
    object-fit: contain;
    /* Ensures entire image is visible */
    margin-bottom: 20px;
}

.model-card h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #0D6EFD;
    /* Suzuki Blue */
}

.model-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
}

.view-all-models {
    text-align: center;
    margin-top: 60px;
}

/* Services Overview Section - Homepage Specific */
.services-overview {
    padding: 80px 0;
    background-color: #fff;
}

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

.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
    border-bottom-color: #0D6EFD;
}

.service-card:hover .icon,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .btn {
    color: #fff;
}

.service-card:hover .btn {
    background-color: #fff;
    color: #0D6EFD;
    /* Suzuki Blue */
}

.service-card .icon {
    font-size: 3em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
}

/* Call to Action Section - Homepage Specific */
.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.suzukimotorcycle.co.in/images/banner/Gixxer-SF-250-New-Launch-Banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
}

.call-to-action h2 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer */
.main-footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 0 20px;
    font-size: 0.9em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-column p,
.footer-column ul {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    color: #ccc;
    display: block;
    padding: 5px 0;
}

.footer-column ul li a:hover {
    color: #0D6EFD;
    /* Suzuki Blue */
}

.footer-column .social-links a {
    color: #ccc;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-column .social-links a:hover {
    color: #0D6EFD;
    /* Suzuki Blue */
}

.footer-column .contact-col i {
    margin-right: 10px;
    color: #0D6EFD;
    /* Suzuki Blue */
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: #333;
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0a58ca;
    /* Darker Blue */
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* --- ABOUT US PAGE SPECIFIC STYLES --- */

.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/about-banner-desktop.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
    /* Make it a bit shorter than main hero */
}

.page-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    /* Animation */
}

.page-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
    /* Animation */
}

.about-intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-text {
    flex: 2;
    min-width: 300px;
}

.intro-text h2 {
    text-align: left;
    margin-top: 0;
}

.intro-text h2::after {
    margin: 10px 0 0 0;
    /* Align line with left text */
}

.intro-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out;
}

.intro-image img:hover {
    transform: scale(1.03);
    /* Animation on hover */
}

.mission-vision-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #0D6EFD;
    /* Suzuki Blue */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.mv-card i {
    font-size: 3.5em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #222;
}

.our-values-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.value-item {
    text-align: center;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.value-item:hover {
    background-color: #f9f9f9;
    border-color: #0D6EFD;
    /* Suzuki Blue */
}

.value-item i {
    font-size: 2.8em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
}

/* --- TESTIMONIALS SECTION STYLES --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.testimonial {
    min-width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial .rating {
    color: #FFC107; /* Gold stars */
    margin-bottom: 20px;
    font-size: 1.4em;
}

.testimonial .rating .fas.fa-star-half-alt {
    color: #FFC107;
}

.testimonial p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    max-width: 700px; /* Optional: limit text width */
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #0D6EFD; /* Suzuki Blue border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.3em;
    color: #222;
}

.testimonial-author span {
    font-size: 0.9em;
    color: #777;
    display: block; /* Ensures it's on a new line */
}

/* Slider Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px; /* Space between slider and dots */
    gap: 10px;
    z-index: 100; /* Ensure dots are above other content if necessary */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #0D6EFD; /* Suzuki Blue */
    transform: scale(1.2);
    border-color: #0D6EFD;
}

.dot:hover {
    background-color: #999;
}


/* Responsive adjustments for Testimonials */
@media (max-width: 992px) {
    .testimonial {
        padding: 30px;
    }
    .testimonial p {
        font-size: 1.1em;
    }
    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
    .testimonial-author h4 {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonial {
        padding: 25px;
    }
    .testimonial p {
        font-size: 1em;
    }
    .testimonial .rating {
        font-size: 1.2em;
    }
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    .testimonial-author h4 {
        font-size: 1.1em;
    }
    .slider-dots {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    .testimonial {
        padding: 20px;
    }
    .testimonial p {
        font-size: 0.9em;
    }
    .testimonial-author h4 {
        font-size: 1em;
    }
    .testimonial-author span {
        font-size: 0.8em;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Slider Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px; /* Space between slider and dots */
    gap: 10px;
    z-index: 100; /* Ensure dots are above other content if necessary */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #0D6EFD; /* Suzuki Blue */
    transform: scale(1.2);
    border-color: #0D6EFD;
}

.dot:hover {
    background-color: #999;
}


/* Responsive adjustments for Testimonials */
@media (max-width: 992px) {
    .testimonial {
        padding: 30px;
    }
    .testimonial p {
        font-size: 1.1em;
    }
    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
    .testimonial-author h4 {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonial {
        padding: 25px;
        /* Adjusted width for responsive flex behavior, no longer fixed max-width on testimonial */
    }
    .testimonial p {
        font-size: 1em;
    }
    .testimonial .rating {
        font-size: 1.2em;
    }
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    .testimonial-author h4 {
        font-size: 1.1em;
    }
    .slider-dots {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    .testimonial {
        padding: 20px;
    }
    .testimonial p {
        font-size: 0.9em;
    }
    .testimonial-author h4 {
        font-size: 1em;
    }
    .testimonial-author span {
        font-size: 0.8em;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav ul li {
        margin: 10px 15px;
    }

    .contact-info {
        margin-top: 20px;
        justify-content: center;
    }

    .slide-caption h2 {
        font-size: 2.5em;
    }

    .slide-caption p {
        font-size: 1em;
    }

    .about-content,
    .model-grid,
    .service-grid,
    .footer-content,
    .intro-content,
    /* New */
    .mv-grid,
    /* New */
    .values-grid

    /* New */
        {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text,
    .about-image,
    .intro-text,
    .intro-image

    /* New */
        {
        min-width: unset;
        width: 100%;
    }

    .about-text h2::after,
    .intro-text h2::after

    /* New */
        {
        margin: 10px auto 0;
    }

    .page-hero h1 {
        font-size: 3em;
    }

    .page-hero p {
        font-size: 1.1em;
    }

    .mv-card {
        padding: 30px;
    }

    .mv-card h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .slide-caption h2 {
        font-size: 2em;
    }

    .slide-caption p {
        font-size: 0.9em;
    }

    .slider-controls button {
        padding: 10px;
        font-size: 1.2em;
    }

    h2 {
        font-size: 2em;
    }

    .call-to-action h2 {
        font-size: 2.5em;
    }

    .call-to-action p {
        font-size: 1.1em;
    }

    .page-hero {
        min-height: 30vh;
        padding: 80px 20px;
    }

    .page-hero h1 {
        font-size: 2.5em;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card p {
        font-size: 1.2em;
    }
}

/* @media (max-width: 480px) {
    .hero-slider {
        height: 50vh;
    }

    .slide-caption {
        padding: 10px;
    }

    .slide-caption h2 {
        font-size: 1.8em;
    }

    .slide-caption p {
        font-size: 0.8em;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-controls button {
        padding: 8px;
        font-size: 1em;
    }

    .logo img {
        height: 50px;
    }

    .main-nav ul li {
        margin: 5px 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-hero {
        padding: 60px 15px;
    }

    .page-hero h1 {
        font-size: 2em;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card p {
        font-size: 1em;
    }
} */
/* --- MODELS PAGE SPECIFIC STYLES (TABBED LAYOUT) --- */

.models-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/banner/models-banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
}

.models-page-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.models-page-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.model-tabs-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.tab-button {
    background-color: #f0f0f0;
    color: #555;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: inset 0 -3px 0 transparent;
    /* For active indicator */
}

.tab-button:hover {
    color: #0D6EFD;
    /* Suzuki Blue */
    background-color: #e9ecef;
}

.tab-button.active {
    color: #fff;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    z-index: 1;
}

/* Optional: Underline effect for active tab */
.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Adjust to sit right on the border */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    /* White line on blue tab */
    border-radius: 0 0 5px 5px;
}


.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding-top: 30px;
    /* Space between tabs and content */
}

.tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
    /* Animation for tab content */
}

.model-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding-top: 20px;
    /* Space from category title if any, or just for visual comfort */
}

.model-card-full {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    /* Subtle border for definition */
}

.model-card-full:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: #0D6EFD;
    /* Suzuki Blue on hover */
}

.model-card-full img {
    width: 100%;
    height: 250px;
    /* Fixed height for images */
    object-fit: contain;
    /* Changed to contain to avoid cropping model images */
    background-color: #f0f0f0;
    /* Light background for images with transparency */
    border-bottom: 1px solid #eee;
    padding: 15px;
    /* Padding for images inside the card */
}

.model-card-full .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.model-card-full h3 {
    font-size: 2em;
    color: #222;
    margin-bottom: 10px;
}

.model-card-full p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.model-card-full .btn {
    margin-top: auto;
    width: fit-content;
    align-self: center;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
}

.model-card-full .btn:hover {
    background-color: #0a58ca;
    /* Darker Blue */
}

/* Add a title for the entire model section */
.model-tabs-section>.container>h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3em;
    color: #222;
}

.model-tabs-section>.container>h2::after {
    background-color: #0D6EFD;
    /* Suzuki Blue */
    width: 80px;
    height: 4px;
}

/* Animations (already defined, but ensuring they are here for completeness) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {

    /* Keep this for card animation within tabs */
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive adjustments for Models page - UPDATE these existing media queries */

@media (max-width: 992px) {
    /* Existing media query rules... */

    .models-page-hero h1 {
        font-size: 3.5em;
    }

    .model-tabs-section>.container>h2 {
        font-size: 2.8em;
    }

    .tab-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .model-list {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Existing media query rules... */

    .models-page-hero {
        min-height: 30vh;
        padding: 80px 20px;
    }

    .models-page-hero h1 {
        font-size: 2.8em;
    }

    .models-page-hero p {
        font-size: 1.1em;
    }

    .model-tabs-section>.container>h2 {
        font-size: 2.2em;
    }

    .tab-buttons {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 10px;
    }

    .tab-button {
        width: 100%;
        /* Full width for stacked buttons */
        border-radius: 8px;
        /* Round corners when stacked */
    }

    .tab-button.active {
        transform: translateY(0);
        /* No transform when stacked */
    }

    .tab-button.active::after {
        display: none;
        /* No underline when stacked */
    }

    .model-list {
        gap: 25px;
    }

    .model-card-full img {
        height: 200px;
    }

    .model-card-full h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    /* Existing media query rules... */

    .models-page-hero {
        padding: 60px 15px;
    }

    .models-page-hero h1 {
        font-size: 2.2em;
    }

    .models-page-hero p {
        font-size: 0.9em;
    }

    .model-tabs-section>.container>h2 {
        font-size: 1.8em;
    }

    .tab-button {
        font-size: 1em;
        padding: 10px 15px;
    }

    .model-list {
        grid-template-columns: 1fr;
        /* Single column on small screens */
        gap: 20px;
    }

    .model-card-full img {
        height: 160px;
    }

    .model-card-full .card-content {
        padding: 15px;
    }

    .model-card-full h3 {
        font-size: 1.5em;
    }

    .model-card-full p {
        font-size: 0.9em;
    }
}

/* --- CONTACT US PAGE SPECIFIC STYLES --- */

.contact-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/contact-banner-desktop.jpg') no-repeat center center/cover;
    /* Example Contact Banner */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
}

.contact-page-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.contact-page-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.contact-details-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    animation: fadeIn 1.5s ease-out;
}

.info-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #0D6EFD;
    /* Suzuki Blue */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 3em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.8em;
    color: #222;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.info-card a {
    color: #0D6EFD;
    /* Suzuki Blue */
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.map-section {
    padding: 0 0 80px;
    /* No top padding, only bottom */
    background-color: #f8f8f8;
}

.map-section h2 {
    margin-bottom: 40px;
    padding-top: 80px;
    /* Add padding here to the H2 if no section padding above */
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 450px;
    /* Fixed height for the map */
    width: 100%;
    animation: fadeIn 1.8s ease-out;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #0D6EFD;
    /* Suzuki Blue */
    animation: fadeInUp 1s ease-out;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: 1 / -1;
    /* Spans full width */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: calc(100% - 20px);
    /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0D6EFD;
    /* Suzuki Blue */
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    /* Light blue glow */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    grid-column: 1 / -1;
    /* Spans full width */
    justify-self: center;
    /* Center the button if it's smaller */
    margin-top: 20px;
    width: auto;
    /* Allow button to size naturally */
    min-width: 200px;
}

.form-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 600;
    display: none;
    /* Hidden by default */
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive adjustments for Contact Us page */
@media (max-width: 992px) {
    .contact-page-hero h1 {
        font-size: 3.5em;
    }

    .contact-form {
        grid-template-columns: 1fr;
        /* Single column for form on tablets */
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        min-height: 30vh;
        padding: 80px 20px;
    }

    .contact-page-hero h1 {
        font-size: 2.8em;
    }

    .contact-page-hero p {
        font-size: 1.1em;
    }

    .contact-info-grid {
        gap: 20px;
    }

    .info-card {
        padding: 25px;
    }

    .map-container {
        height: 350px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-page-hero {
        padding: 60px 15px;
    }

    .contact-page-hero h1 {
        font-size: 2.2em;
    }

    .contact-page-hero p {
        font-size: 0.9em;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .info-card {
        padding: 20px;
    }

    .map-container {
        height: 280px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-form button {
        min-width: unset;
        width: 100%;
    }
}

/* --- NETWORK BRANCHES SECTION STYLES --- */
.network-section {
    padding: 80px 0;
    background-color: #f0f0f0;
    /* A slightly different background to differentiate */
    text-align: center;
}

.network-section h2 {
    font-size: 2.8em;
    color: #222;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    /* To center the ::after */
}

.network-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    margin: 15px auto 0;
    border-radius: 2px;
}

.network-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    animation: fadeIn 1.5s ease-out;
}

.network-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribute content */
}

.network-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #0D6EFD;
    /* Suzuki Blue on hover */
}

.network-card .location-icon {
    font-size: 3.5em;
    /* Larger icon */
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 25px;
    animation: bounceIn 0.8s ease-out;
    /* Add a subtle icon animation */
}

.network-card h3 {
    font-size: 2em;
    color: #0D6EFD;
    /* Suzuki Blue for branch name */
    margin-bottom: 15px;
}

.network-card p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.network-card p:last-of-type {
    margin-bottom: 0;
    /* No bottom margin for the last paragraph */
    font-weight: 600;
    /* Make mobile number stand out */
    color: #333;
}

/* Animations for Network Cards */
@keyframes bounceIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}


/* Responsive adjustments for Network Section */
@media (max-width: 992px) {
    .network-section h2 {
        font-size: 2.5em;
    }

    .network-locations-grid {
        gap: 25px;
    }

    .network-card {
        padding: 25px;
    }

    .network-card h3 {
        font-size: 1.8em;
    }

    .network-card p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .network-section h2 {
        font-size: 2.2em;
    }

    .network-locations-grid {
        grid-template-columns: 1fr;
        /* Single column on tablets */
        gap: 20px;
    }

    .network-card .location-icon {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .network-section {
        padding: 60px 0;
    }

    .network-section h2 {
        font-size: 1.8em;
    }

    .network-card {
        padding: 20px;
    }

    .network-card h3 {
        font-size: 1.6em;
    }

    .network-card p {
        font-size: 0.9em;
    }
}

/* --- BEST VALUE PAGE SPECIFIC STYLES --- */

.best-value-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/banner/best-value-banner.jpg') no-repeat center center/cover;
    /* Example Best Value Banner */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
}

.best-value-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.best-value-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.value-proposition-section {
    padding: 80px 0;
    background-color: #fff;
}

.value-proposition-section .section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.value-proposition-section .section-intro p {
    font-size: 1.1em;
    color: #555;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #0D6EFD;
    /* Suzuki Blue */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInUp 0.8s ease-out forwards;
    /* Using existing animation */
    opacity: 0;
    /* Start hidden for animation */
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.value-card:nth-child(4) {
    animation-delay: 0.4s;
}


.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.value-card i {
    font-size: 3.5em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.8em;
    color: #222;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1em;
    color: #555;
}

.how-it-works-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out;
}

.step-card .step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
    font-size: 2.5em;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.step-card h3 {
    font-size: 1.8em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-top: 30px;
    /* Space for the number */
    margin-bottom: 15px;
}

.step-card p {
    font-size: 1em;
    color: #555;
}

.evaluation-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.evaluation-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #0D6EFD;
    /* Suzuki Blue */
    animation: fadeInUp 1s ease-out;
}

.evaluation-form-wrapper p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #666;
}

.evaluation-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.evaluation-form .form-group.full-width {
    grid-column: 1 / -1;
}

/* Reusing form group styles from contact page */
.evaluation-form input,
.evaluation-form textarea,
.evaluation-form select {
    width: calc(100% - 20px);
    /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.evaluation-form input:focus,
.evaluation-form textarea:focus,
.evaluation-form select:focus {
    border-color: #0D6EFD;
    /* Suzuki Blue */
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    /* Light blue glow */
    outline: none;
}

.evaluation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.evaluation-form button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 20px;
    width: auto;
    min-width: 250px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-left: 5px solid #0D6EFD;
    /* Suzuki Blue */
    animation: fadeIn 1s ease-out;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.faq-item.active .faq-question {
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on max content height */
    padding: 15px 25px 20px;
}


/* Responsive adjustments for Best Value page */
@media (max-width: 992px) {
    .best-value-hero h1 {
        font-size: 3.5em;
    }

    .value-cards-grid,
    .steps-grid,
    .evaluation-form {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .evaluation-form-wrapper,
    .faq-list {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .best-value-hero {
        min-height: 30vh;
        padding: 80px 20px;
    }

    .best-value-hero h1 {
        font-size: 2.8em;
    }

    .best-value-hero p {
        font-size: 1.1em;
    }

    .value-cards-grid,
    .steps-grid,
    .evaluation-form {
        grid-template-columns: 1fr;
        /* Single column on tablets */
        gap: 20px;
    }

    .value-card,
    .step-card {
        padding: 25px;
    }

    .evaluation-form-wrapper {
        padding: 25px;
    }

    .faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .best-value-hero {
        padding: 60px 15px;
    }

    .best-value-hero h1 {
        font-size: 2.2em;
    }

    .best-value-hero p {
        font-size: 0.9em;
    }

    .value-proposition-section,
    .how-it-works-section,
    .evaluation-form-section,
    .faq-section {
        padding: 50px 0;
    }

    .value-card,
    .step-card,
    .evaluation-form-wrapper {
        padding: 20px;
    }

    .step-card .step-number {
        font-size: 2em;
        width: 50px;
        height: 50px;
    }

    .faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .faq-answer {
        font-size: 0.9em;
        padding: 0 15px 12px;
    }
}

/* --- FINANCE PAGE SPECIFIC STYLES --- */

.finance-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/banner/finance-banner.jpg') no-repeat center center/cover;
    /* Example Finance Banner */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
}

.finance-page-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.finance-page-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.finance-content-section {
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.finance-documents-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0D6EFD;
    /* Suzuki Blue */
    animation: fadeIn 1s ease-out;
}

.finance-documents-section h2 {
    text-align: left;
    margin-top: 0;
    font-size: 2em;
    color: #222;
}

.finance-documents-section h2::after {
    margin: 10px 0 0 0;
    width: 60px;
}

.document-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.document-item {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.document-item i {
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-right: 10px;
    font-size: 1.2em;
}

.document-sub-list {
    list-style: none;
    padding-left: 30px;
    /* Indent sub-items */
    margin-top: 10px;
}

.document-sub-list li {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.document-sub-list li i {
    font-size: 0.9em;
    margin-right: 8px;
}

.finance-form-section {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #0D6EFD;
    /* Suzuki Blue */
    animation: fadeInUp 1s ease-out;
}

.finance-form-section h2 {
    text-align: center;
    margin-top: 0;
    font-size: 2.2em;
    color: #222;
}

.finance-form-section h2::after {
    margin: 10px auto 30px;
    width: 80px;
}

.finance-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.finance-form .form-group.full-width {
    grid-column: 1 / -1;
}

/* Reusing form group styles from contact page */
.finance-form input,
.finance-form textarea,
.finance-form select {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.finance-form input:focus,
.finance-form textarea:focus,
.finance-form select:focus {
    border-color: #0D6EFD;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    outline: none;
}

.finance-form textarea {
    resize: vertical;
    min-height: 100px;
}

.finance-form button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 20px;
    width: auto;
    min-width: 200px;
}

/* --- SERVICE BOOKINGS PAGE SPECIFIC STYLES --- */

.service-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/banner/service-banner.jpg') no-repeat center center/cover;
    /* Example Service Banner */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
}

.service-page-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.service-page-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.service-content-section {
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.service-benefits-section {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0D6EFD;
    /* Suzuki Blue */
    animation: fadeIn 1s ease-out;
}

.service-benefits-section h2 {
    text-align: left;
    margin-top: 0;
    font-size: 2em;
    color: #222;
}

.service-benefits-section h2::after {
    margin: 10px 0 0 0;
    width: 60px;
}

.service-benefits-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.service-benefits-content .service-image {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.service-benefits-content .service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-benefits-content .benefits-list {
    flex: 2;
    list-style: none;
    padding: 0;
    min-width: 250px;
}

.service-benefits-content .benefits-list li {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.service-benefits-content .benefits-list li i {
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 3px;
    /* Align icon better with text */
}

.service-benefits-content .note {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
    grid-column: 1 / -1;
    /* Spans full width if in grid */
}

.service-form-section {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #0D6EFD;
    /* Suzuki Blue */
    animation: fadeInUp 1s ease-out;
}

.service-form-section h2 {
    text-align: center;
    margin-top: 0;
    font-size: 2.2em;
    color: #222;
}

.service-form-section h2::after {
    margin: 10px auto 30px;
    width: 80px;
}

.service-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-form .form-group.full-width {
    grid-column: 1 / -1;
}

/* Reusing form group styles from contact page */
.service-form input,
.service-form textarea,
.service-form select {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-form input:focus,
.service-form textarea:focus,
.service-form select:focus {
    border-color: #0D6EFD;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    outline: none;
}

.service-form textarea {
    resize: vertical;
    min-height: 100px;
}

.service-form button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 20px;
    width: auto;
    min-width: 200px;
}

/* Responsive adjustments for Finance & Service Pages */
@media (max-width: 992px) {

    .finance-page-hero h1,
    .service-page-hero h1 {
        font-size: 3.5em;
    }

    .finance-content-section,
    .service-content-section {
        flex-direction: column;
        align-items: center;
    }

    .finance-documents-section,
    .finance-form-section,
    .service-benefits-section,
    .service-form-section {
        max-width: 700px;
        /* Allow wider on tablets */
        min-width: unset;
        width: 90%;
        /* Take up more width */
    }

    .finance-form,
    .service-form {
        grid-template-columns: 1fr;
        /* Single column for forms on tablets */
    }

    .finance-documents-section h2::after,
    .service-benefits-section h2::after {
        margin: 10px auto 0;
        /* Center line for h2 when stacked */
    }

    .finance-documents-section h2,
    .service-benefits-section h2 {
        text-align: center;
    }

    .service-benefits-content {
        flex-direction: column;
        text-align: center;
    }

    .service-benefits-content .service-image {
        max-width: 250px;
        /* Larger image on tablet */
    }

    .service-benefits-content .benefits-list {
        min-width: unset;
        width: 100%;
    }

    .service-benefits-content .benefits-list li {
        justify-content: center;
        /* Center list items when stacked */
        text-align: left;
        /* Keep text left-aligned within item */
    }
}

@media (max-width: 768px) {

    .finance-page-hero,
    .service-page-hero {
        min-height: 30vh;
        padding: 80px 20px;
    }

    .finance-page-hero h1,
    .service-page-hero h1 {
        font-size: 2.8em;
    }

    .finance-page-hero p,
    .service-page-hero p {
        font-size: 1.1em;
    }

    .finance-documents-section,
    .finance-form-section,
    .service-benefits-section,
    .service-form-section {
        padding: 25px;
    }

    .finance-documents-section h2,
    .service-benefits-section h2 {
        font-size: 1.8em;
    }

    .service-benefits-content .benefits-list li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {

    .finance-page-hero,
    .service-page-hero {
        padding: 60px 15px;
    }

    .finance-page-hero h1,
    .service-page-hero h1 {
        font-size: 2.2em;
    }

    .finance-page-hero p,
    .service-page-hero p {
        font-size: 0.9em;
    }

    .finance-documents-section,
    .finance-form-section,
    .service-benefits-section,
    .service-form-section {
        padding: 20px;
        width: 100%;
    }

    .finance-documents-section h2,
    .service-benefits-section h2 {
        font-size: 1.6em;
    }

    .document-item,
    .service-benefits-content .benefits-list li {
        font-size: 0.95em;
    }

    .document-sub-list li {
        font-size: 0.85em;
    }

    .finance-form input,
    .finance-form textarea,
    .finance-form select,
    .service-form input,
    .service-form textarea,
    .service-form select {
        padding: 10px;
        font-size: 0.9em;
    }

    .finance-form button,
    .service-form button {
        min-width: unset;
        width: 100%;
    }
}

/* --- ABOUT PAGE HERO --- */
.page-hero.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/banner/company-banner.jpg') no-repeat center center/cover;
    /* Example About Us Banner */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
}

.page-hero.about-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.page-hero.about-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}


/* --- ABOUT SECTION --- */
.about-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text .section-title::after {
    margin: 10px 0 0 0;
    /* Align underline to left */
}


.about-text p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    font-size: 2.5em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 10px;
}

.feature-item span {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #222;
}

.feature-item p {
    font-size: 0.9em;
    color: #777;
    margin: 0;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.experience-badge strong {
    font-size: 1.8em;
    line-height: 1;
}

/* --- SHOWROOM SECTION --- */
.showroom-section {
    padding: 80px 0;
    background-color: #fff;
}

.showroom-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.showroom-info {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
}

.showroom-info h3 {
    font-size: 2.2em;
    color: #222;
    margin-bottom: 15px;
}

.showroom-info p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.8em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2em;
    color: #222;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95em;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.showroom-map {
    flex: 1.5;
    min-width: 400px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.showroom-map iframe {
    border-radius: 10px;
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #0D6EFD;
    /* Suzuki Blue */
}

.service-icon {
    font-size: 3em;
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6em;
    color: #222;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* --- TEAM SECTION --- */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #0D6EFD;
    /* Suzuki Blue */
    padding: 3px;
}

.team-member h3 {
    font-size: 1.5em;
    color: #222;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    color: #0D6EFD;
    /* Suzuki Blue */
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.member-social a:hover {
    color: #0056b3;
    /* Darker blue on hover */
    transform: translateY(-2px);
}


/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    /* Fixed height for consistent look */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 110, 253, 0.7);
    /* Suzuki Blue with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5em;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
    /* For slider functionality */
}

.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 20px;
    overflow: hidden;
    /* Hide extra testimonials */
}

.testimonial {
    display: none;
    /* Hidden by default, managed by JS */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-content .rating {
    color: #FFD700;
    /* Gold for stars */
    margin-bottom: 15px;
    font-size: 1.2em;
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0D6EFD;
    /* Suzuki Blue */
}

.testimonial-author h4 {
    font-size: 1.3em;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-author span {
    display: block;
    font-size: 0.9em;
    color: #777;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #0D6EFD;
    /* Suzuki Blue */
}

/* --- CALL TO ACTION (CTA) SECTION --- */
.cta-section {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('images/cta-bg.jpg') no-repeat center center/cover;
    /* Example CTA background */
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Reusing existing button styles but ensure contrast */
.cta-buttons .btn.primary-btn {
    background-color: #fff;
    color: #0D6EFD;
    /* Suzuki Blue */
    border: 2px solid #fff;
}

.cta-buttons .btn.primary-btn:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

.cta-buttons .btn.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn.secondary-btn:hover {
    background-color: #fff;
    color: #0D6EFD;
}


/* --- RESPONSIVE ADJUSTMENTS FOR ABOUT PAGE --- */
@media (max-width: 992px) {
    .page-hero.about-hero h1 {
        font-size: 3.5em;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text,
    .about-image {
        min-width: unset;
        width: 100%;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-title::after {
        margin: 10px auto 0;
    }

    .about-features {
        justify-content: center;
    }

    .showroom-content {
        flex-direction: column;
        align-items: center;
    }

    .showroom-info,
    .showroom-map {
        min-width: unset;
        width: 100%;
        max-width: 700px;
        /* Allow wider on tablets */
    }

    .showroom-map {
        height: 400px;
    }

    .services-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .testimonial-content {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 2.5em;
    }

    .cta-content p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-hero.about-hero {
        padding: 80px 20px;
        min-height: 30vh;
    }

    .page-hero.about-hero h1 {
        font-size: 2.8em;
    }

    .page-hero.about-hero p {
        font-size: 1.1em;
    }

    .about-section,
    .showroom-section,
    .services-section,
    .team-section,
    .gallery-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }

    .about-text p,
    .showroom-info p,
    .service-card p,
    .team-member p,
    .testimonial-content p {
        font-size: 1em;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item i {
        font-size: 2em;
    }

    .feature-item span {
        font-size: 1.5em;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .showroom-map {
        height: 350px;
    }

    .cta-content h2 {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero.about-hero {
        padding: 60px 15px;
    }

    .page-hero.about-hero h1 {
        font-size: 2.2em;
    }

    .page-hero.about-hero p {
        font-size: 0.9em;
    }

    .about-section,
    .showroom-section,
    .services-section,
    .team-section,
    .gallery-section,
    .testimonials-section,
    .cta-section {
        padding: 40px 0;
    }

    .about-content {
        gap: 30px;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-item {
        width: 100%;
        max-width: 250px;
    }

    .about-image {
        width: 90%;
        margin: 0 auto;
    }

    .showroom-map {
        height: 280px;
    }

    .services-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .team-member,
    .gallery-item {
        max-width: 350px;
        margin: 0 auto;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 0.9em;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .testimonial-author h4 {
        font-size: 1.1em;
    }

    .cta-content h2 {
        font-size: 1.8em;
    }

    .cta-content p {
        font-size: 1em;
    }

    .cta-buttons .btn {
        width: 95%;
    }
}

/* --- PRODUCT DETAILS PAGE SPECIFIC STYLES --- */

.product-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.suzukimotorcycle.co.in/images/products/access-125-hero.jpg') no-repeat center center/cover;
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner/access125.jpg') no-repeat center center/cover; */
    /* Access 125 Hero Image */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;

}

.product-hero h1 {
    font-size: 4.5em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.product-hero p {
    font-size: 1.5em;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

/* Product Overview Section */
.product-overview-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-overview-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.product-main-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.product-main-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background-color: #f0f0f0;
    /* Light background for transparent images */
    padding: 20px;
}

.product-details-text {
    flex: 1.5;
    min-width: 450px;
}

.product-details-text h2 {
    text-align: left;
    font-size: 2.8em;
    margin-top: 0;
    color: #0D6EFD;
    /* Suzuki Blue */
}

.product-details-text h2::after {
    margin: 10px 0 0 0;
    width: 80px;
    background-color: #0D6EFD;
}

.product-details-text p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.key-highlights {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.key-highlights li {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.key-highlights li i {
    color: #0D6EFD;
    /* Suzuki Blue */
    margin-right: 10px;
    font-size: 1.1em;
}

/* Product Tabs Navigation */
.product-tabs-nav {
    background-color: #222;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 90px;
    /* Adjust based on header height */
    z-index: 900;
}

.product-tabs-nav .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-tabs-nav button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

.product-tabs-nav button:hover {
    color: #0D6EFD;
    /* Suzuki Blue */
}

.product-tabs-nav button.active {
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Product Tab Content Sections */
.product-tab-content-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    display: none;
    /* Managed by JS */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-tab-content-section.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}

.product-tab-content-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #222;
}

.product-tab-content-section h2::after {
    background-color: #0D6EFD;
    width: 60px;
    height: 3px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #e6f0ff;
    /* Light blue background for icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-wrapper i {
    font-size: 2.5em;
    color: #0D6EFD;
    /* Suzuki Blue */
}

.feature-card h3 {
    font-size: 1.6em;
    color: #222;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95em;
    color: #666;
}

/* Accessories Section */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.accessory-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accessory-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.accessory-card h4 {
    font-size: 1.2em;
    color: #222;
    margin-bottom: 5px;
}

.accessory-card p {
    font-size: 0.9em;
    color: #666;
}

/* Specifications Section */
.specs-table-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 40px;
    overflow-x: auto;
    /* For responsive table */
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background-color: #0D6EFD;
    /* Suzuki Blue */
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

.specs-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specs-table tr:hover {
    background-color: #e6f0ff;
    /* Light blue on hover */
}

.specs-table td {
    color: #333;
    font-size: 0.95em;
}

/* Gallery Section */
.product-gallery-section {
    padding: 60px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.product-gallery-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.product-gallery-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0D6EFD; /* Suzuki Blue accent */
    border-radius: 5px;
}

.gallery-main-display {
    background-color: #fff;
    border-radius: 15px; /
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.gallery-main-display img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.3s ease-in-out;
}

.color-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.color-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
}

.color-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.color-thumb.active {
    border-color: #0D6EFD;
    transform: translateY(-5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.color-thumb:hover:not(.active) {
    border-color: #a7d0ff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* Responsive adjustments for Product Details page */
@media (max-width: 1200px) {
    .product-details-text {
        min-width: 350px;
        /* Adjust for smaller screens */
    }
}

@media (max-width: 992px) {
    .product-hero h1 {
        font-size: 3.5em;
    }

    .product-hero p {
        font-size: 1.2em;
    }

    .product-overview-content {
        flex-direction: column;
        text-align: center;
    }

    .product-main-image,
    .product-details-text {
        min-width: unset;
        width: 100%;
        max-width: 700px;
        /* Limit width on tablets */
    }

    .product-details-text h2 {
        text-align: center;
    }

    .product-details-text h2::after {
        margin: 10px auto 0;
    }

    .key-highlights li {
        justify-content: center;
    }

    .product-tabs-nav {
        top: 0;
        /* Make it sticky right below header on smaller screens */
        padding: 10px 0;
    }

    .product-tabs-nav button {
        font-size: 1em;
        padding: 8px 15px;
    }

    .features-grid,
    .accessories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .accessory-card img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 80px 20px;
        min-height: 30vh;
    }

    .product-hero h1 {
        font-size: 2.8
    }

    .product-hero h1 {
        font-size: 2.8em;
    }

    .product-hero p {
        font-size: 1.1em;
    }

    .product-overview-section,
    .product-tab-content-section,
    .product-gallery-section {
        padding: 60px 0;
    }

    .product-tab-content-section h2 {
        font-size: 2em;
    }

    .features-grid,
    .accessories-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 20px;
    }

    .feature-card,
    .accessory-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .accessory-card img {
        height: 150px;
        /* Revert to slightly larger on single column */
    }

    .specs-table th,
    .specs-table td {
        padding: 10px 12px;
        font-size: 0.9em;
    }

    .gallery-main-display {
        padding: 10px;
    }

    .color-options {
        gap: 10px;
    }

    .color-thumb {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 60px 15px;
    }

    .product-hero h1 {
        font-size: 2.2em;
    }

    .product-hero p {
        font-size: 0.9em;
    }

    .product-main-image,
    .product-details-text {
        padding: 15px;
    }

    .product-details-text h2 {
        font-size: 2em;
    }

    .product-tabs-nav button {
        font-size: 0.9em;
        padding: 6px 10px;
    }

    .product-tab-content-section h2 {
        font-size: 1.8em;
    }

    .feature-card,
    .accessory-card {
        padding: 15px;
    }

    .feature-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-card .icon-wrapper i {
        font-size: 2em;
    }

    .accessory-card img {
        height: 100px;
    }

    .color-thumb {
        width: 50px;
        height: 50px;
    }
}
/* --- PRODUCT TAB CONTENT SECTION STYLES (for Specifications Image) --- */
.product-tab-content-section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for the section */
    text-align: center;
}

.product-tab-content-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.product-tab-content-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0D6EFD; /* Suzuki Blue accent */
    border-radius: 5px;
}

.specs-image-display {
    max-width: 1000px; /* Max width for the image container */
    margin: 40px auto 0 auto; /* Center the container and add top margin */
    background-color: #ffffff; /* White background for the image card */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for a floating effect */
    overflow: hidden; /* Ensures the image fits within the rounded corners */
    padding: 25px; /* Padding inside the card around the image */
    display: flex; /* Use flexbox to center image easily */
    justify-content: center;
    align-items: center;
}

.specs-image-display img {
    max-width: 100%; /* Ensures image is responsive and fits its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Removes extra space below image */
    object-fit: contain; /* Ensures the entire image is visible, scales down if needed */
}

/* Responsive Adjustments for Specifications Image */
@media (max-width: 992px) {
    .specs-image-display {
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
    }
}

@media (max-width: 768px) {
    .product-tab-content-section {
        padding: 40px 0;
    }
    .product-tab-content-section h2 {
        font-size: 2em;
    }
    .specs-image-display {
        margin-top: 30px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 480px) {
    .product-tab-content-section {
        padding: 30px 0;
    }
    .product-tab-content-section h2 {
        font-size: 1.8em;
    }
    .specs-image-display {
        margin-top: 25px;
        padding: 10px;
        border-radius: 8px;
    }
}
