# Service Department

:::raw
<div class="cms-fullwidth">
<style>
    /* ========== SERVICE PAGE STYLES ========== */
    

    :root {
        --svc-primary: #201647;
        --svc-primary-dark: #160f32;
        --svc-accent: #db4504;
        --svc-accent-dark: #b93a03;
        --svc-black: #000000;
        --svc-white: #ffffff;
        --svc-gray-50: #f8f9fa;
        --svc-gray-100: #f0f0f0;
        --svc-gray-200: #E2E5E6;
        --svc-gray-400: #696D71;
        --svc-gray-600: #666;
        --svc-gray-800: #1a1a1a;
        --svc-green: #30770f;
    }

    /* ========== BUTTONS ========== */
    .svc-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        font-size: 14px;
        font-weight: 700;
        font-family: inherit;
        letter-spacing: 0.5px;
        border: 2px solid transparent;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
        text-decoration: none;
    }
    .svc-btn-primary { background: var(--svc-accent); color: var(--svc-white); border-color: var(--svc-accent); }
    .svc-btn-primary:hover { background: var(--svc-accent-dark); border-color: var(--svc-accent-dark); color: var(--svc-white); }
    .svc-btn-outline { background: transparent; color: var(--svc-white); border-color: rgba(255,255,255,0.4); }
    .svc-btn-outline:hover { border-color: var(--svc-white); background: rgba(255,255,255,0.1); color: var(--svc-white); }

    /* ========== HERO ========== */
    .service-hero {
        position: relative;
        background: linear-gradient(135deg, #1a0f33 0%, #201647 50%, #2b1d5e 100%);
        overflow: hidden;
        padding: 72px 0 80px;
    }
    .service-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(219,69,4,0.15) 0%, transparent 70%);
        pointer-events: none;
    }
    .service-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--svc-accent);
    }
    .service-hero-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 1;
        text-align: center;
    }
    .service-hero-inner h2 {
        font-size: 48px;
        font-weight: 700;
        color: var(--svc-white);
        line-height: 1.1;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }
    .service-hero-inner h2 em {
        font-style: normal;
        color: var(--svc-accent);
    }
    .service-hero-inner p {
        font-size: 18px;
        color: rgba(255,255,255,0.7);
        margin-bottom: 32px;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ========== FEATURES STRIP ========== */
    .svc-features-strip {
        background: var(--svc-gray-50);
        border-bottom: 1px solid var(--svc-gray-200);
        padding: 48px 0;
    }
    .svc-features-strip-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .svc-feature-card {
        text-align: center;
        padding: 32px 24px;
        background: var(--svc-white);
        border-radius: 12px;
        border: 1px solid var(--svc-gray-200);
        transition: all 0.3s;
    }
    .svc-feature-card:hover {
        border-color: var(--svc-primary);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }
    .svc-feature-icon {
        width: 64px;
        height: 64px;
        background: var(--svc-primary);
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .svc-feature-icon svg { width: 28px; height: 28px; fill: var(--svc-white); }
    .svc-feature-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--svc-gray-800);
        margin-bottom: 8px;
    }
    .svc-feature-card p {
        font-size: 14px;
        color: var(--svc-gray-600);
        line-height: 1.6;
    }

    /* ========== SCHEDULE SECTION ========== */
    .svc-schedule-section {
        padding: 72px 0;
        background: var(--svc-white);
    }
    .svc-schedule-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
    .svc-schedule-info h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--svc-gray-800);
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }
    .svc-schedule-info h2 em { font-style: normal; color: var(--svc-accent); }
    .svc-schedule-info > p {
        font-size: 16px;
        color: var(--svc-gray-600);
        line-height: 1.7;
        margin-bottom: 28px;
    }
    .svc-contact-detail {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 20px;
    }
    .svc-contact-icon {
        width: 42px;
        height: 42px;
        background: var(--svc-gray-50);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 1px solid var(--svc-gray-200);
    }
    .svc-contact-icon svg { width: 20px; height: 20px; fill: var(--svc-primary); }
    .svc-contact-text h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--svc-gray-800);
        margin-bottom: 2px;
    }
    .svc-contact-text p, .svc-contact-text a {
        font-size: 14px;
        color: var(--svc-gray-600);
        line-height: 1.5;
    }
    .svc-contact-text a:hover { color: var(--svc-primary); }

    .svc-schedule-cta-card {
        background: var(--svc-gray-50);
        border: 1px solid var(--svc-gray-200);
        border-radius: 16px;
        padding: 48px 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .svc-schedule-cta-card h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--svc-gray-800);
        margin-bottom: 12px;
    }
    .svc-schedule-cta-card > p {
        font-size: 15px;
        color: var(--svc-gray-600);
        margin-bottom: 28px;
        max-width: 360px;
        line-height: 1.6;
    }
    .svc-schedule-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 18px 36px;
        background: var(--svc-accent);
        color: var(--svc-white);
        font-family: inherit;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.3s;
    }
    .svc-schedule-cta-btn:hover { background: var(--svc-accent-dark); color: var(--svc-white); }
    .svc-schedule-cta-btn svg { width: 20px; height: 20px; fill: var(--svc-white); }

    /* ========== SECTION TITLES ========== */
    .svc-section-title {
        text-align: center;
        margin-bottom: 48px;
    }
    .svc-section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--svc-gray-800);
        letter-spacing: -0.5px;
    }
    .svc-section-title p {
        font-size: 16px;
        color: var(--svc-gray-600);
        margin-top: 8px;
    }
    .svc-section-title .svc-bar {
        width: 60px;
        height: 4px;
        background: var(--svc-accent);
        margin: 16px auto 0;
    }

    /* ========== SERVICES GRID ========== */
    .svc-services-section {
        padding: 72px 0;
        background: var(--svc-gray-50);
        border-top: 1px solid var(--svc-gray-200);
    }
    .svc-services-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .svc-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .svc-service-card {
        background: var(--svc-white);
        border: 1px solid var(--svc-gray-200);
        border-radius: 12px;
        padding: 32px 28px;
        transition: all 0.3s;
    }
    .svc-service-card:hover {
        border-color: var(--svc-primary);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }
    .svc-card-icon {
        width: 48px;
        height: 48px;
        background: rgba(32,22,71,0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
    }
    .svc-card-icon svg { width: 24px; height: 24px; fill: var(--svc-primary); }
    .svc-service-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--svc-gray-800);
        margin-bottom: 8px;
    }
    .svc-service-card p {
        font-size: 14px;
        color: var(--svc-gray-600);
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .svc-service-price {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        color: var(--svc-accent);
        background: rgba(219,69,4,0.08);
        padding: 6px 14px;
        border-radius: 20px;
    }

    /* ========== FAQ ========== */
    .svc-faq-section {
        padding: 72px 0;
        background: var(--svc-white);
    }
    .svc-faq-inner {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .svc-faq-item {
        border-bottom: 1px solid var(--svc-gray-200);
    }
    .svc-faq-item:first-of-type { border-top: 1px solid var(--svc-gray-200); }
    .svc-faq-item summary {
        padding: 20px 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--svc-gray-800);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        list-style: none;
        transition: color 0.2s;
    }
    .svc-faq-item summary::-webkit-details-marker { display: none; }
    .svc-faq-item summary::marker { display: none; content: ''; }
    .svc-faq-item summary:hover { color: var(--svc-primary); }
    .svc-faq-item summary svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        transition: transform 0.3s;
        fill: var(--svc-gray-400);
    }
    .svc-faq-item[open] summary svg {
        transform: rotate(180deg);
        fill: var(--svc-primary);
    }
    .svc-faq-item[open] summary { color: var(--svc-primary); }
    .svc-faq-answer-inner {
        padding: 0 0 20px;
        font-size: 15px;
        color: var(--svc-gray-600);
        line-height: 1.7;
    }

    /* ========== SEO CONTENT ========== */
    .svc-seo-content {
        background: var(--svc-white);
        padding: 64px 24px;
        border-top: 1px solid var(--svc-gray-200);
    }
    .svc-seo-inner {
        max-width: 900px;
        margin: 0 auto;
    }
    .svc-seo-inner h2 {
        font-size: 22px;
        font-weight: 700;
        color: var(--svc-gray-800);
        margin-top: 40px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .svc-seo-inner h2:first-child { margin-top: 0; }
    .svc-seo-inner p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 16px;
    }
    .svc-seo-inner a {
        color: var(--svc-accent);
        text-decoration: none;
    }
    .svc-seo-inner a:hover { text-decoration: underline; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
        .service-hero-inner h2 { font-size: 32px; }
        .svc-features-strip-inner { grid-template-columns: 1fr; gap: 16px; }
        .svc-schedule-inner { grid-template-columns: 1fr; gap: 40px; }
        .svc-services-grid { grid-template-columns: 1fr; }
        .svc-form-row { grid-template-columns: 1fr; }
        .service-hero { padding: 48px 0 56px; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
        .svc-features-strip-inner { grid-template-columns: 1fr; }
        .svc-services-grid { grid-template-columns: repeat(2, 1fr); }
    }
</style>


<section class="service-hero">
    <div class="service-hero-inner">
        <h2>Bob Weaver Chevrolet GMC <em>Service Center</em></h2>
        <p>Factory-trained technicians for Chrysler, Dodge, Jeep, Ram, Chevrolet, and GMC vehicles.</p>
        <div class="hero-ctas">
            <a href="/content/schedule-service" class="svc-btn svc-btn-primary">Schedule Service</a>
            <a href="https://www.mopar.com/en-us/service-coupons-and-offers.html?couponDealerCode=45494#coupons-section" class="svc-btn svc-btn-outline" target="_blank" rel="noopener">View Service Specials</a>
        </div>
    </div>
</section>


<section class="svc-features-strip">
    <div class="svc-features-strip-inner">
        <div class="svc-feature-card">
            <div class="svc-feature-icon">
                <span class="svc-emoji" aria-hidden="true">🎓</span>
            </div>
            <h3>Factory-Trained Technicians</h3>
            <p>Our certified technicians complete ongoing manufacturer training across all six brands we carry, so they stay current with the latest technologies and repair procedures.</p>
        </div>
        <div class="svc-feature-card">
            <div class="svc-feature-icon">
                <span class="svc-emoji" aria-hidden="true">🧩</span>
            </div>
            <h3>Genuine OEM Parts</h3>
            <p>We use only authentic OEM parts from Mopar and GM, designed specifically for your vehicle and backed by the manufacturer's warranty.</p>
        </div>
        <div class="svc-feature-card">
            <div class="svc-feature-icon">
                <span class="svc-emoji" aria-hidden="true">🔧</span>
            </div>
            <h3>Transparent Pricing</h3>
            <p>No hidden fees, no surprises. We provide upfront estimates and won't perform additional work without your approval.</p>
        </div>
    </div>
</section>


<section class="svc-schedule-section" id="svc-schedule">
    <div class="svc-schedule-inner">
        <div class="svc-schedule-info">
            <h2>Schedule Your <em>Service</em></h2>
            <p>Book your next service appointment online or give us a call. Our team is ready to keep your vehicle running at peak performance.</p>

            <div class="svc-contact-detail">
                <div class="svc-contact-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <div class="svc-contact-text">
                    <h4>Service Department</h4>
                    <a href="tel:5706227191">(570) 622-7191</a>
                </div>
            </div>

            <div class="svc-contact-detail">
                <div class="svc-contact-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <div class="svc-contact-text">
                    <h4>Address</h4>
                    <a href="https://www.google.com/maps/place/Bob+Weaver+Auto/@40.675877,-76.224874,17z/data=!4m5!3m4!1s0x0:0x6beef0da1388b971!8m2!3d40.6757437!4d-76.2252387" target="_blank" rel="noopener">2174 West Market Street, Pottsville, PA 17901</a>
                </div>
            </div>

            <div class="svc-contact-detail">
                <div class="svc-contact-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <div class="svc-contact-text">
                    <h4>Service Hours</h4>
                    <table class="serviceHours"><tr><td class="hour1">Monday - Friday:&nbsp;</td><td class="hour2">7:30 AM - 5:30 PM</td></tr><tr><td class="hour1">Saturday:&nbsp;</td><td class="hour2">9:00 AM - 3:00 PM</td></tr><tr><td class="hour1">Sunday:&nbsp;</td><td class="hour2">Closed</td></tr></table>
                </div>
            </div>
        </div>

        <div class="svc-schedule-cta-card">
            <h3>Ready to Schedule?</h3>
            <p>Book your next service appointment online. Our team will confirm your preferred time.</p>
            <a href="/content/schedule-service" class="svc-schedule-cta-btn">
                <span class="svc-emoji" aria-hidden="true">📅</span>
                Schedule Service Online
            </a>
        </div>
    </div>
</section>


<section class="svc-services-section" id="svc-specials">
    <div class="svc-services-inner">
        <div class="svc-section-title">
            <h2>Popular Services</h2>
            <p>Quality maintenance and repair at competitive prices</p>
            <div class="svc-bar"></div>
        </div>
        <div class="svc-services-grid">
            <div class="svc-service-card">
                <div class="svc-card-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <h3>Oil Change</h3>
                <p>Full synthetic or conventional oil change with filter replacement and multi-point vehicle inspection.</p>
                <span class="svc-service-price">From $49.95</span>
            </div>

            <div class="svc-service-card">
                <div class="svc-card-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <h3>Brake Service</h3>
                <p>Complete brake inspection, pad replacement, rotor resurfacing or replacement with genuine OEM parts.</p>
                <span class="svc-service-price">From $179.95</span>
            </div>

            <div class="svc-service-card">
                <div class="svc-card-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <h3>Tire Rotation &amp; Balance</h3>
                <p>Extend your tire life with professional rotation, balance, and pressure check on all four tires.</p>
                <span class="svc-service-price">From $39.95</span>
            </div>

            <div class="svc-service-card">
                <div class="svc-card-icon">
                    <span class="svc-emoji" aria-hidden="true">🔋</span>
                </div>
                <h3>Battery Replacement</h3>
                <p>Free battery test and diagnostic. Factory-recommended battery installation with warranty coverage.</p>
                <span class="svc-service-price">From $159.95</span>
            </div>

            <div class="svc-service-card">
                <div class="svc-card-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <h3>Multi-Point Inspection</h3>
                <p>Comprehensive vehicle health check covering brakes, fluids, tires, belts, hoses, and all major systems.</p>
                <span class="svc-service-price">Complimentary</span>
            </div>

            <div class="svc-service-card">
                <div class="svc-card-icon">
                    <span class="svc-emoji" aria-hidden="true">🔧</span>
                </div>
                <h3>Transmission Service</h3>
                <p>Transmission fluid exchange, filter replacement, and electronic system check to keep your drivetrain smooth.</p>
                <span class="svc-service-price">From $249.95</span>
            </div>
        </div>
    </div>
</section>


{ServiceReviews}


<section class="svc-faq-section">
    <div class="svc-faq-inner">
        <div class="svc-section-title">
            <h2>Service FAQ</h2>
            <div class="svc-bar"></div>
        </div>

        <details class="svc-faq-item">
            <summary>
                How often should I change the oil in my vehicle?
                <span class="svc-emoji" aria-hidden="true">🛢️</span>
            </summary>
            <div class="svc-faq-answer-inner">For most modern vehicles with full synthetic oil, the recommended interval is every 7,500 to 10,000 miles or once a year, whichever comes first. Vehicles used for towing, frequent short trips, or dusty conditions may benefit from more frequent changes. Your vehicle's Oil Life Monitor will also alert you when service is due. Our technicians will reset the reminder during your visit.</div>
        </details>

        <details class="svc-faq-item">
            <summary>
                Do I have to go to the dealer for warranty service?
                <span class="svc-emoji" aria-hidden="true">🔧</span>
            </summary>
            <div class="svc-faq-answer-inner">While you can have routine maintenance performed at any qualified shop, warranty repairs must be completed at an authorized dealership. Bringing your vehicle to Bob Weaver Chevrolet GMC ensures factory-trained technicians handle the work, genuine OEM parts are used, and all service records are logged directly in the manufacturer's system -- protecting your warranty and maximizing resale value.</div>
        </details>

        <details class="svc-faq-item">
            <summary>
                What brands do you service at Bob Weaver Chevrolet GMC?
                <span class="svc-emoji" aria-hidden="true">🔧</span>
            </summary>
            <div class="svc-faq-answer-inner">We are a certified service center for six brands: Chrysler, Dodge, Jeep, Ram, Chevrolet, and GMC. Our technicians are factory-trained across both the Stellantis (CDJR) and General Motors (Chevy/GMC) lineups. Whether you drive a Wrangler, a Silverado, a Ram 1500, or a Terrain, we have the diagnostic tools and expertise to service it correctly.</div>
        </details>

        <details class="svc-faq-item">
            <summary>
                How long does a typical service appointment take?
                <span class="svc-emoji" aria-hidden="true">🛢️</span>
            </summary>
            <div class="svc-faq-answer-inner">Routine services like oil changes and tire rotations typically take 45 minutes to an hour. Brake service averages 1 to 2 hours. More involved repairs such as transmission service or diagnostics may take half a day or longer, depending on the issue. We'll always give you a time estimate when you check in, and our service advisors will keep you updated if anything changes.</div>
        </details>

        <details class="svc-faq-item">
            <summary>
                Can I use aftermarket parts and keep my warranty?
                <span class="svc-emoji" aria-hidden="true">🔧</span>
            </summary>
            <div class="svc-faq-answer-inner">Under the Magnuson-Moss Warranty Act, a manufacturer cannot void your warranty simply for using aftermarket parts. However, if an aftermarket part directly causes a failure, that specific repair may not be covered. To protect your investment, we recommend genuine OEM parts -- they're engineered specifically for your vehicle, come with their own warranty, and ensure optimal performance. Our parts department can help you find the right part at a competitive price.</div>
        </details>
    </div>
</section>


<section class="svc-seo-content">
    <div class="svc-seo-inner">
        <h2>Auto Service in Pottsville, PA at Bob Weaver Chevrolet GMC</h2>
        <p>Bob Weaver Chevrolet GMC is your trusted factory-certified service center in Pottsville, Pennsylvania. Our state-of-the-art service department is staffed by factory-trained technicians who specialize in Chrysler, Dodge, Jeep, Ram, Chevrolet, and GMC vehicles. From routine oil changes and brake inspections to complex engine diagnostics and transmission repairs, we have the expertise and equipment to keep your vehicle running strong. We use only genuine OEM parts, so every repair meets the manufacturer's exact specifications. Drivers from Pottsville, Schuylkill Haven, Minersville, Pine Grove, and across Schuylkill County count on Bob Weaver Chevrolet GMC for reliable, honest auto service at competitive prices.</p>

        <h2>Certified Service Center Serving Schuylkill Haven, Minersville &amp; Pine Grove</h2>
        <p>Looking for a dependable auto service center near Schuylkill Haven, Minersville, or Pine Grove? Bob Weaver Chevrolet GMC is conveniently located at <a href="https://www.google.com/maps/place/Bob+Weaver+Auto/@40.675877,-76.224874,17z/data=!4m5!3m4!1s0x0:0x6beef0da1388b971!8m2!3d40.6757437!4d-76.2252387" target="_blank" rel="noopener">2174 West Market Street in Pottsville</a>, just a short drive from communities across Schuylkill County. Our service department offers convenient hours with early drop-off available. Whether you drive a Jeep Grand Cherokee, Ram 1500, Chevrolet Silverado, or GMC Sierra, <a href="/content/schedule-service">schedule your service appointment online</a> or call us at <a href="tel:5706227191">(570) 622-7191</a>.</p>
    </div>
</section>


</div>

        <div class="tab-pane active" id="Inventory">
            
        </div>
         <div id="MainContent_pnlBodyBottomContent">
	
</div>
    <div class="clear-20"></div>


        </section>

        

        <link href="/Content/css/footer-detail.min.css" rel="stylesheet" async />
<style>
.svc-btn-primary,.svc-schedule-cta-btn{color:#ffffff !important}
.svc-btn-outline,.svc-btn-secondary{color:var(--svc-accent) !important}
.svc-emoji{line-height:1;display:inline-flex;align-items:center;justify-content:center}
.svc-feature-icon .svc-emoji{font-size:30px}
.svc-contact-icon .svc-emoji{font-size:20px}
.svc-card-icon .svc-emoji{font-size:24px}
.svc-faq-icon .svc-emoji,.svc-schedule-icon .svc-emoji{font-size:22px}
</style>
</div>
:::