/* ========================================
   Vasundhra Motors - Premium Corporate Design
   Inspired by Maruti Suzuki ARENA & NEXA
   ======================================== */

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Maruti Brand Colors */
    --maruti-blue: #0066B3;
    --maruti-dark-blue: #004A8F;
    --maruti-light-blue: #E6F2FF;
    --primary-color: #0066B3;
    --secondary-color: #004A8F;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --grey: #E0E0E0;
    --dark-grey: #666666;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 30px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--maruti-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--maruti-dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--maruti-blue);
    border: 2px solid var(--maruti-blue);
}

.btn-secondary:hover {
    background: var(--maruti-blue);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    margin-left: 10px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === Navigation === */
.navbar {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--maruti-blue);
    margin-bottom: 0;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--maruti-blue);
}

.nav-link.btn-book {
    background: var(--maruti-blue);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
}

.nav-link.btn-book:hover {
    background: var(--maruti-dark-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--maruti-blue);
    cursor: pointer;
}

/* === Hero Slider === */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     /* KEY LINE */
    object-position: center;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 74, 143, 0.55),
        rgba(0, 74, 143, 0.35)
    );
    z-index: 1;
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.slide-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtext {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 3;
    transition: var(--transition);
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active,
.indicator:hover {
    background: var(--white);
    transform: scale(1.2);
}
.brand-trust {
    background: #f8fafc;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.brand-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #374151;
    margin-bottom: 16px;
    text-transform: uppercase;
}

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

.brand-logos img {
    height: 48px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .brand-logos {
        gap: 24px;
    }

    .brand-logos img {
        height: 40px;
    }
}
.brand-sub {
    font-size: 13px;
    color: #6b7280;
    margin-top: 10px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
/* === Highlights Section === */
.highlights {
    padding: var(--section-padding);
    background: var(--light-grey);
}

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

.highlight-card {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--maruti-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--maruti-blue);
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === Introduction Section === */
.introduction {
    padding: var(--section-padding);
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* === Services Section === */
.services {
    padding: var(--section-padding);
    background: var(--light-grey);
}

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

.service-card {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--maruti-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--maruti-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--maruti-blue);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
.cashless-banner {
    margin: 20px auto 40px;
    padding: 14px 20px;
    max-width: 700px;
    background: #d32f2f;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cashless-banner i {
    margin-right: 8px;
}

/* === Book Service Section === */
.book-service {
    padding: var(--section-padding);
    background: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-form {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--grey);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maruti-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--maruti-blue);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    margin: 5px 0;
}

.info-card a {
    color: var(--maruti-blue);
    text-decoration: none;
    font-weight: 600;
}

.text-muted {
    font-size: 0.9rem;
    color: var(--dark-grey);
}

/* === Why Authorized Section === */
.why-authorized {
    padding: var(--section-padding);
    background: var(--maruti-light-blue);
}

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

.why-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border-left: 5px solid var(--maruti-blue);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-number {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--maruti-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}
/* === Testimonials Section === */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-grey);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--dark-grey);
    font-size: 0.85rem;
}

/* === About Section === */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--maruti-blue);
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--maruti-light-blue);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--maruti-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* === Contact Section === */
.contact {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.contact-wrapper {
    display: grid;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--maruti-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--maruti-blue);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    margin: 5px 0;
    line-height: 1.6;
}

.contact-card a {
    color: var(--maruti-blue);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* === Footer === */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--maruti-blue);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--maruti-blue);
    transform: translateY(-3px);
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 10px 0;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
}

/* === Floating WhatsApp Button === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* === Scroll to Top Button === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--maruti-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--maruti-dark-blue);
    transform: translateY(-3px);
}

/* === Success Modal === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* === Responsive Design === */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .slide-heading {
        font-size: 2.2rem;
    }

    .slide-subtext {
        font-size: 1rem;
    }

    .intro-content,
    .about-content,
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 150px;
    }

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

    .intro-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .hero-slider {
        height: 450px;
    }

    .slide-heading {
        font-size: 1.8rem;
    }

    .slide-subtext {
        font-size: 0.95rem;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-control.prev {
        left: 15px;
    }

    .slider-control.next {
        right: 15px;
    }

    .highlights-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }

    .modal-content {
        padding: 35px 25px;
        margin: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* === Print Styles === */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-top,
    .slider-control,
    .slider-indicators {
        display: none;
    }
}
/* ===== SERVICE TILES WITH BACKGROUND IMAGES ===== */

/* === CLEAN SERVICE CARDS (NO IMAGES) === */

.service-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    border-top-color: var(--maruti-blue);
}

.service-card .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    background: var(--maruti-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--maruti-blue);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Content stays above overlay */
.service-bg .service-content {
    position: relative;
    z-index: 2;
    padding: 22px;
    color: #fff;
    text-align: left;
}

.service-bg h3 {
    color: #fff;
    margin-bottom: 8px;
}

.service-bg p,
.service-bg a {
    color: #eaeaea;
    font-size: 14px;
}

/* Icon styling */
.service-bg .service-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

/* Hover effect */
.service-bg:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}
.gallery-heading {
    font-size: 2rem;
    margin: 60px 0 20px;
    text-align: center;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.before-after-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.ba-image {
    position: relative;
}

.ba-image img {
    width: 100%;
    cursor: pointer;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    border-radius: 20px;
}

.ba-label.before { background: #c62828; }
.ba-label.after  { background: #2e7d32; }

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.delivery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

.delivery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    cursor: pointer;
}

.delivery-card p {
    padding: 12px;
    font-size: 0.95rem;
}
/* === FIX: Restore service card text visibility === */

.service-card {
    background: #ffffff !important;
}

.service-card h3 {
    color: #1f2937 !important; /* dark readable */
}

.service-card p {
    color: #4b5563 !important; /* normal paragraph */
}

.service-card .service-icon {
    background: #e6f2ff !important;
    color: #0066B3 !important;
}

/* Ensure no overlays affect text */
.service-card .service-overlay {
    display: none !important;
}
/* Fix: Body Shop phone number color */
.service-card a {
    color: #000000 !important;
    font-weight: 600;
}

.service-card a:hover {
    color: #0066B3 !important; /* Maruti blue on hover */
}