/* Extracted from tomdiesel.html */
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --secondary: #ff6600;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --darker: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-secondary:hover {
    background: #e65c00;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
}

.logo-icon {
    font-size: 32px;
    margin-right: 10px;
    color: var(--secondary);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 66, 128, 0.9) 100%), url('https://images.unsplash.com/photo-1593111774240-d529f12c76c8?ixlib=rb-4.0.3') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    background: transparent;
}

.hero .container,
.hero-content {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.15;
}

.hero-content {
    max-width: 700px;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Hero Section Social Icons */
.hero .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.hero .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .social-icons a:hover {
    background: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

        /* YouTube Section */
        .youtube-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .youtube-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .video-player-container {
            flex: 7;
            min-width: 300px;
        }
        
        .video-player {
            width: 100%;
            background-color: #000;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .video-player iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        .video-info {
            padding: 20px 0;
        }
        
        .video-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .video-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .video-views {
            color: var(--gray);
            font-size: 1rem;
        }
        
        .video-actions {
            display: flex;
            gap: 20px;
        }
        
        .action-button {
            display: flex;
            align-items: center;
            background: none;
            border: none;
            color: var(--gray);
            font-size: 1rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .action-button:hover {
            color: var(--primary);
        }
        
        .action-button i {
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
        .action-button.liked {
            color: var(--primary);
        }
        
        .channel-info {
            display: flex;
            align-items: center;
            margin: 20px 0;
            padding: 20px 0;
            border-top: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .channel-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .channel-details {
            flex: 1;
        }
        
        .channel-name {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.3rem;
        }
        
        .channel-subscribers {
            color: var(--gray);
            font-size: 1rem;
        }
        
        .subscribe-button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .subscribe-button:hover {
            background-color: #b30000;
        }
        
        .subscribe-button.subscribed {
            background-color: var(--gray);
        }
        
        .video-description {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .video-description .stats {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .video-description .text {
            white-space: pre-line;
            max-height: 80px;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .video-description.expanded .text {
            max-height: none;
        }
        
        .show-more {
            color: var(--primary);
            font-weight: 500;
            margin-top: 10px;
            cursor: pointer;
            display: inline-block;
        }
        
        /* Related Videos */
        .related-videos {
            flex: 3;
            min-width: 300px;
        }
        
        .related-video {
            display: flex;
            margin-bottom: 20px;
            cursor: pointer;
            transition: transform 0.2s;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .related-video:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .related-thumbnail {
            width: 168px;
            height: 94px;
            background-color: #e5e5e5;
            margin-right: 12px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .related-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-duration {
            position: absolute;
            bottom: 6px;
            right: 6px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            font-size: 0.8rem;
            padding: 2px 6px;
            border-radius: 2px;
        }
        
        .related-video-info {
            flex: 1;
            padding: 8px 0;
        }
        
        .related-video-title {
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .related-channel-name {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 3px;
        }
        
        .related-video-stats {
            font-size: 0.85rem;
            color: var(--gray);
        }


/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    position: relative;
    overflow: hidden;
}

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

.section-title {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a6ed1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-title.center {
    display: block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.section-title .section-underline {
    display: block;
    width: 100px;
    height: 5px;
    background: #ff7a00;
    border-radius: 2px;
    margin-top: 0.5rem;
    margin-left: 0;
}

.section-title.center .section-underline {
    margin-left: auto;
    margin-right: auto;
}

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

    .section-title .section-underline {
        width: 60px;
        height: 3px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

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

.service-card {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(7, 36, 181, 0.245);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    color: #000000;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-link:focus,
.service-link:active,
.service-link:hover {
    outline: none;
    box-shadow: none;
    color: inherit;
    text-decoration: none;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    position: relative;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 450px;
}

/* Slideshow styles for About section */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
}
.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
}
.slide-img.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.slide-btn:hover {
    background: var(--primary);
}
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

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

/* Brands Section */
.brands {
    padding: 80px 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.brand-item {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
}

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

.testimonial-slide {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 50px 0;
    position: relative;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url('https://randomuser.me/api/portraits/men/32.jpg') no-repeat center center/cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

author-info p {
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

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

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

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

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

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

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Logo image sizing for header */
.logo-img {
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}

/* Popup callout for machine image */
.machine-popup-container {
position: absolute;
left: 0;
bottom: 0;
width: 180px;
z-index: 3;
}
.machine-img {
width: 100%;
border-radius: 8px 8px 0 0;
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.popup-callout {
position: absolute;
left: 10px;
bottom: 10px;
background: var(--secondary);
color: #fff;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
padding: 10px 18px;
border-radius: 8px 8px 8px 0;
font-size: 1rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.12);
animation: popup-bounce 1.2s infinite alternate;
letter-spacing: 1px;
}
@keyframes popup-bounce {
0% { transform: translateY(0); }
100% { transform: translateY(-8px); }
}

.contact-status-message {
            margin-bottom: 20px;
        }
        .contact-status-success {
            color: #4CAF50;
            font-weight: bold;
        }
        .contact-status-error {
            color: #d32f2f;
            font-weight: bold;
        }

.injector-pump-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.injector-pump-main {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
  height: 100%;
}
.injector-pump-1 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.injector-pump-2 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}
.injector-pump-3 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.injector-pump-4 {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}
.injector-pump-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .injector-pump-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .injector-pump-main {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  .injector-pump-1, .injector-pump-2, .injector-pump-3, .injector-pump-4 {
    grid-row: auto;
    grid-column: auto;
  }
}

/* Generalized grid for promo slides */
.promo-tiles-custom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.promo-tile-large {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
  height: 100%;
}
.promo-tile-small:nth-child(2) {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.promo-tile-small:nth-child(3) {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}
.promo-tile-small:nth-child(4) {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.promo-tile-small:nth-child(5) {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}
.promo-tiles-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .promo-tiles-custom {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .promo-tile-large {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  .promo-tile-small {
    grid-row: auto;
    grid-column: auto;
  }
}

.promo-slideshow-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 48px 32px 32px 32px;
  margin: 40px auto 0 auto;
  max-width: 600px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo-slide-img {
  width: 100%;
  max-width: 480px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 28px;
  background: #f4f4f4;
  display: block;
}
.promo-caption-modern {
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 20px 18px 20px;
  margin: 0 auto;
  max-width: 420px;
  text-align: center;
  position: relative;
  top: 0;
}
.promo-caption-modern h3 {
  font-size: 1.7rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.promo-caption-modern p {
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.promo-slide-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  margin: 0 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.promo-slide-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px) scale(1.08);
}
@media (max-width: 700px) {
  .promo-slideshow-container {
    padding: 18px 2vw 12px 2vw;
    min-height: 220px;
    max-width: 98vw;
  }
  .promo-slide-img {
    height: 180px;
    max-width: 98vw;
  }
  .promo-caption-modern {
    padding: 12px 4vw 10px 4vw;
    max-width: 98vw;
  }
}

.promo-tiles-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0 0 0;
}
.promo-tile-card {
  background: #10131a;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  width: 320px;
  max-width: 320px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.promo-tile-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.promo-tile-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.promo-tile-content {
  padding: 24px 20px 20px 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(16,19,26,0.92) 80%, rgba(16,19,26,1) 100%);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.promo-tile-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.promo-tile-content p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 18px;
  min-height: 48px;
}
.promo-tile-content .btn {
  align-self: flex-start;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 6px;
  box-shadow: none;
  background: var(--primary);
  color: #fff;
  transition: background 0.2s;
}
.promo-tile-content .btn i {
  margin-left: 8px;
}
.promo-tile-content .btn:hover {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 1200px) {
  .promo-tiles-row {
    gap: 18px;
  }
  .promo-tile-card {
    width: 280px;
  }
}
@media (max-width: 900px) {
  .promo-tiles-row {
    gap: 12px;
  }
  .promo-tile-card {
    width: 98vw;
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .promo-tiles-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .promo-tile-card {
    width: 98vw;
    max-width: 98vw;
  }
  .promo-tile-card img {
    height: 140px;
  }
}

/* Common Rail Hero Content */
.common-rail-hero-content .section-title {
  text-align: left;
}

/* --- CRaaS Section: Professional, Modern, Visually Appealing --- */
.common-rail-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 48px;
  background: linear-gradient(120deg, #f8fafd 70%, #e9f1fa 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  padding: 48px 32px 40px 32px;
  margin: 48px auto 0 auto;
  max-width: 1200px;
}
.common-rail-hero-content .section-title {
  text-align: left;
  font-size: 2.3rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.common-rail-hero-bg {
    background-image: url('../assets/images/commonrail_repair.webp');
    background-size: cover;
    background-position: center;
}
.common-rail-hero-bg {
    background-image: url('../assets/images/common_rail.webp');
    background-size: cover;
    background-position: center;
}
.craas-content-col {
  flex: 2 1 380px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.craas-media-col {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
.craas-media-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 18px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin-bottom: 0;
}
.craas-media-container img,
.craas-media-container video {
  width: 100%;
  max-width: 380px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  background: #f4f4f4;
  margin-bottom: 10px;
}
.craas-media-container video {
  min-height: 160px;
}
.craas-service-tiers {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin: 18px 0 0 0;
}
.craas-service-tiers th,
.craas-service-tiers td {
  padding: 12px 18px;
  background: #f4f8fc;
  color: #1a1a1a;
  font-size: 1.05rem;
  border-radius: 8px;
  text-align: left;
}
.craas-service-tiers th {
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.craas-workflow {
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.craas-workflow li {
  background: #e9f1fa;
  border-left: 5px solid var(--secondary);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #1a1a1a;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.craas-cta-row {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.craas-cta-row .btn {
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,102,204,0.10);
}
.craas-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  margin: 32px 0 24px 0;
  border-radius: 2px;
  opacity: 0.18;
}
.craas-injector-pump-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.craas-injector-col, .craas-pump-col {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.craas-injector-col h4, .craas-pump-col h4 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.craas-injector-col img, .craas-pump-col img {
  width: 100%;
  max-width: 180px;
  height: 90px;
  object-fit: contain;
  border-radius: 6px;
  background: #f4f4f4;
  margin-bottom: 8px;
}
.craas-injector-col ul, .craas-pump-col ul {
  margin: 0 0 0 18px;
  padding: 0;
  list-style: disc;
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
}
.craas-injector-col ul li, .craas-pump-col ul li {
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .common-rail-hero-content {
    flex-direction: column;
    gap: 32px;
    padding: 32px 10vw 28px 10vw;
  }
  .craas-media-col {
    align-items: stretch;
    max-width: 100vw;
  }
}
@media (max-width: 700px) {
  .common-rail-hero-content {
    padding: 18px 2vw 12px 2vw;
    gap: 18px;
  }
  .craas-content-col, .craas-media-col {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
  }
  .craas-media-container {
    max-width: 98vw;
    padding: 8px 2vw 8px 2vw;
  }
  .craas-media-container img, .craas-media-container video {
    max-width: 98vw;
    height: 120px;
  }
  .craas-injector-pump-row {
    flex-direction: column;
    gap: 18px;
  }
  .craas-injector-col, .craas-pump-col {
    padding: 14px 8px 10px 8px;
    max-width: 98vw;
  }
  .craas-injector-col img, .craas-pump-col img {
    max-width: 98vw;
    height: 60px;
  }
}

/* Why Choose Us Section (extracted from deepseek_html) */
.why-choose-us {
    background: #fff;
    padding: 80px 0 60px 0;
}
.why-choose-us .section-title {
    color: #0a6ed1;
}
.why-choose-subtitle {
    text-align: center;
    color: #222;
    font-size: 1.25rem;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 48px;
}
.why-choose-tab-group {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
}
.why-choose-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 56px;
}
.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(8,80,140,0.07);
    padding: 32px 28px 28px 28px;
    min-width: 340px;
    max-width: 400px;
    flex: 1 1 0;
    transition: box-shadow 0.2s;
}
.why-choose-item:hover {
    box-shadow: 0 8px 32px rgba(8,80,140,0.13);
}
.why-choose-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3f0fa;
    color: #156fd6;
    font-size: 2.6rem;
    margin-top: 2px;
}
.why-choose-item h3 {
    margin: 0 0 8px 0;
    color: #08508c;
    font-size: 1.35rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}
.why-choose-item p {
    margin: 0;
    color: #222;
    font-size: 1.08rem;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .why-choose-row {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    .why-choose-item {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 700px) {
    .why-choose-tab-group {
        gap: 24px;
    }
    .why-choose-row {
        gap: 16px;
    }
    .why-choose-item {
        padding: 18px 10px;
    }
    .why-choose-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    .why-choose-us .section-title {
        font-size: 2rem;
    }
}

/* Repair Process Section Styling */
.repair-process {
    padding: 80px 0 60px 0;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
}
.repair-process .section-title {
    text-align: center;
    color: #0a6ed1;
    font-size: 2.2rem;
    margin-bottom: 40px;
}
.process-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.process-step {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(8,80,140,0.07);
    padding: 32px 28px 28px 28px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 0;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateY(30px);
}
.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.process-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3f0fa;
    color: #156fd6;
    font-size: 2.6rem;
    margin: 0 auto 18px auto;
}
.process-step h3 {
    margin: 0 0 12px 0;
    color: #08508c;
    font-size: 1.18rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}
.process-step p {
    margin: 0;
    color: #222;
    font-size: 1.05rem;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    .process-step {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* Common Rail Repairs Hero Section Styles */
.service-hero-bg {
    background-image: url('assets/images/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-hero-content {
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.service-hero-content .section-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 24px;
}
.service-hero-content .service-hero-desc {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e0eaf3;
    margin-bottom: 32px;
}
.service-hero-content .btn-primary {
    background-color: #0a3d62;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* --- Repair Process Section Styling --- */
.process-steps-rail-horizontal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 40px;
    flex-wrap: nowrap;
    position: relative;
}
.process-step-rail {
    background: none;
    box-shadow: none;
    text-align: center;
    width: 180px;
    min-width: 160px;
    margin: 0 0;
    position: relative;
    z-index: 2;
}
.process-circle-rail {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #174A6A;
    font-size: 22px;
    font-weight: 700;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #174A6A;
}
.process-circle-rail i {
    font-size: 20px;
    margin-right: 6px;
    color: #174A6A !important;
}
.process-circle-rail span {
    font-size: 18px;
    font-weight: 700;
    margin-left: 2px;
    color: #fff;
    background: #174A6A;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -12px;
    top: -12px;
    font-size: 15px;
    font-weight: 700;
}
.process-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #174A6A;
    margin-bottom: 6px;
}
.process-desc {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.98rem;
    color: #333;
    margin-bottom: 0;
}
.process-tab {
    width: 40px;
    height: 2px;
    background: #B0BEC5;
    align-self: center;
    margin: 0 0;
    z-index: 1;
}
.process-step-rail-last {
    margin-right: 0;
}
@media (max-width: 1100px) {
    .process-steps-rail-horizontal {
        flex-wrap: wrap;
        gap: 24px;
    }
    .process-tab {
        display: none;
    }
    .process-step-rail {
        width: 100%;
        min-width: 120px;
    }
}

/* --- Diagnostics Tabs Styling --- */
.diagnostics-tabs {
    margin-top: 32px;
    background: none;
}
.diagnostics-tab-list {
    display: flex;
    justify-content: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.diagnostics-tab-list li {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #174A6A;
    background: #F5F8FA;
    border-radius: 6px 6px 0 0;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-bottom: 2px solid transparent;
}
.diagnostics-tab-list li.active {
    background: #fff;
    color: #174A6A;
    border-bottom: 2px solid #FFA726;
}
.diagnostics-tab-content {
    display: none;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 12px rgba(23,74,106,0.06);
    padding: 32px 28px 24px 28px;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto', Arial, sans-serif;
}
.diagnostics-tab-content.active {
    display: block;
}
.diagnostics-tab-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #174A6A;
    margin-bottom: 12px;
}
.diagnostics-tab-content ul {
    margin: 0;
    padding-left: 18px;
    color: #333;
    font-size: 1rem;
}
.diagnostics-tab-content ul li {
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .diagnostics-tab-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    .diagnostics-tab-content {
        padding: 20px 10px 16px 10px;
    }
}

/* --- Fuel System Solutions Tabs Styling --- */
.fuel-tabs {
    margin-top: 32px;
    background: none;
}
.fuel-tab-list {
    display: flex;
    justify-content: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.fuel-tab-list li {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #174A6A;
    background: #F5F8FA;
    border-radius: 6px 6px 0 0;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fuel-tab-list li i {
    font-size: 18px;
    color: #174A6A;
}
.fuel-tab-list li.active {
    background: #fff;
    color: #174A6A;
    border-bottom: 2px solid #FFA726;
}
.fuel-tab-content {
    display: none;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 12px rgba(23,74,106,0.06);
    padding: 32px 28px 24px 28px;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto', Arial, sans-serif;
}
.fuel-tab-content.active {
    display: block;
}
.fuel-tab-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #174A6A;
    margin-bottom: 12px;
}
.fuel-tab-content ul {
    margin: 0;
    padding-left: 18px;
    color: #333;
    font-size: 1rem;
}
.fuel-tab-content ul li {
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .fuel-tab-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    .fuel-tab-content {
        padding: 20px 10px 16px 10px;
    }
}

/* --- Diesel Knock Solutions Service Grid Styling --- */
.diesel-knock-tiles {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.knock-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(23,74,106,0.08);
    padding: 32px 24px 24px 24px;
    max-width: 340px;
    min-width: 280px;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
    border-top: 4px solid #FFA726;
    position: relative;
}
.knock-card:hover {
    box-shadow: 0 6px 24px rgba(23,74,106,0.16);
    transform: translateY(-4px) scale(1.03);
}
.knock-card .service-icon {
    text-align: center;
    margin-bottom: 18px;
}
.knock-card .service-icon i {
    font-size: 38px;
    color: #174A6A;
}
.knock-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.knock-title.combustion,
.knock-title.injector,
.knock-title.mechanical {
    color: #E53935;
}
.knock-card p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    color: #174A6A;
    margin-bottom: 10px;
    font-weight: 500;
}
.knock-card ul {
    margin: 0;
    padding-left: 18px;
    color: #333;
    font-size: 1rem;
}
.knock-card ul li {
    margin-bottom: 8px;
}
@media (max-width: 1100px) {
    .diesel-knock-tiles {
        flex-wrap: wrap;
        gap: 18px;
    }
    .knock-card {
        max-width: 100%;
        min-width: 220px;
    }
}

/* --- Diesel Knock Process Steps Styling --- */
.process-steps-knock {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 40px;
    flex-wrap: nowrap;
    position: relative;
}
.process-step-knock {
    background: #fff;
    box-shadow: 0 2px 16px rgba(23,74,106,0.08);
    text-align: center;
    width: 210px;
    min-width: 180px;
    margin: 0 0;
    position: relative;
    z-index: 2;
    border-radius: 14px;
    padding: 32px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-step-knock-last {
    margin-right: 0;
}
.process-circle-knock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin: 0 auto 16px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #174A6A;
}
.process-circle-knock i {
    color: #174A6A;
    font-size: 28px;
    margin-bottom: 0;
}
.process-step-number {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #FFA726;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.process-title-knock {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #174A6A;
    margin-bottom: 8px;
}
.process-desc-knock {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.98rem;
    color: #333;
    margin-bottom: 0;
}
.process-arrow-knock {
    align-self: center;
    font-size: 2.2rem;
    color: #B0BEC5;
    margin: 0 0;
    z-index: 1;
    padding: 0 8px;
    font-weight: 700;
}
@media (max-width: 1200px) {
    .process-steps-knock {
        flex-wrap: wrap;
        gap: 24px;
    }
    .process-arrow-knock {
        display: none;
    }
    .process-step-knock {
        width: 100%;
        min-width: 120px;
    }
}

/* --- Fuel System Cleaning Tabs Styling --- */
.fuel-cleaning-tabs {
    margin-top: 32px;
    background: none;
}
.fuel-cleaning-tab-list {
    display: flex;
    justify-content: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.fuel-cleaning-tab-list li {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #174A6A;
    background: #F5F8FA;
    border-radius: 6px 6px 0 0;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fuel-cleaning-tab-list li i {
    font-size: 18px;
    color: #174A6A;
}
.fuel-cleaning-tab-list li.active {
    background: #fff;
    color: #174A6A;
    border-bottom: 2px solid #FFA726;
}
.fuel-cleaning-tab-content {
    display: none;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 12px rgba(23,74,106,0.06);
    padding: 32px 28px 24px 28px;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: left;
}
.fuel-cleaning-tab-content.active {
    display: block;
}
.fuel-cleaning-tab-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #174A6A;
    margin-bottom: 12px;
}
.fuel-cleaning-tab-content ul {
    margin: 0;
    padding-left: 18px;
    color: #333;
    font-size: 1rem;
}
.fuel-cleaning-tab-content ul li {
    margin-bottom: 8px;
}
.tab-img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: block;
}
.fuel-cleaning-benefits {
    margin: 48px auto 0 auto;
    max-width: 700px;
    background: #F5F8FA;
    border-radius: 10px;
    padding: 28px 24px 18px 24px;
    box-shadow: 0 2px 8px rgba(23,74,106,0.04);
    text-align: left;
}
.fuel-cleaning-benefits h3 {
    color: #174A6A;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.fuel-cleaning-benefits ul {
    margin: 0;
    padding-left: 18px;
    color: #333;
    font-size: 1rem;
}
.fuel-cleaning-benefits ul li {
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .fuel-cleaning-tab-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    .fuel-cleaning-tab-content {
        padding: 20px 10px 16px 10px;
    }
    .fuel-cleaning-benefits {
        padding: 18px 8px 10px 8px;
    }
}

/* --- Fuel System Cleaning Process Steps Styling --- */
.process-steps-cleaning {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 40px;
    flex-wrap: nowrap;
    position: relative;
}
.process-step-cleaning {
    background: #fff;
    box-shadow: 0 2px 16px rgba(23,74,106,0.08);
    text-align: center;
    width: 210px;
    min-width: 180px;
    margin: 0 0;
    position: relative;
    z-index: 2;
    border-radius: 14px;
    padding: 32px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-step-cleaning-last {
    margin-right: 0;
}
.process-circle-cleaning {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin: 0 auto 16px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #174A6A;
}
.process-circle-cleaning i {
    color: #174A6A;
    font-size: 28px;
    margin-bottom: 0;
}
.process-step-number {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #FFA726;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.process-title-cleaning {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #174A6A;
    margin-bottom: 8px;
}
.process-desc-cleaning {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.98rem;
    color: #333;
    margin-bottom: 0;
}
.process-arrow-cleaning {
    align-self: center;
    font-size: 2.2rem;
    color: #B0BEC5;
    margin: 0 0;
    z-index: 1;
    padding: 0 8px;
    font-weight: 700;
}
@media (max-width: 1200px) {
    .process-steps-cleaning {
        flex-wrap: wrap;
        gap: 24px;
    }
    .process-arrow-cleaning {
        display: none;
    }
    .process-step-cleaning {
        width: 100%;
        min-width: 120px;
    }
}

/* --- Roadside Assistance & Auto Recovery Service Grid Styling --- */
.roadside-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}
.roadside-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(23,74,106,0.08);
    padding: 32px 24px 24px 24px;
    max-width: 320px;
    min-width: 220px;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
    border-top: 4px solid #FFA726;
    position: relative;
}
.roadside-card:hover {
    box-shadow: 0 6px 24px rgba(23,74,106,0.16);
    transform: translateY(-4px) scale(1.03);
}
.roadside-card .service-icon {
    text-align: center;
    margin-bottom: 18px;
}
.roadside-card .service-icon i {
    font-size: 38px;
    color: #174A6A;
}
.roadside-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #174A6A;
}
.roadside-card p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0;
    font-weight: 500;
}
@media (max-width: 1100px) {
    .roadside-tiles {
        flex-wrap: wrap;
        gap: 18px;
    }
    .roadside-card {
        max-width: 100%;
        min-width: 180px;
    }
}

/* --- Catalog Grid --- */
.injector-cart-section {
    background: #f7f9fc;
    padding: 40px 0;
}
.injector-cart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin: 0 auto;
    max-width: 1400px;
}

/* --- Product Card --- */
.injector-cart-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 18px 20px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    min-height: 420px;
}
.injector-cart-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    transform: translateY(-4px) scale(1.02);
}

/* --- Product Image --- */
.injector-cart-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 10px;
    background: #f0f4fa;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

/* --- Product Details --- */
.injector-cart-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a355e;
    margin-bottom: 8px;
    text-align: center;
}
.injector-cart-desc {
    font-size: 0.98rem;
    color: #4a5a6a;
    margin-bottom: 12px;
    text-align: center;
    min-height: 48px;
}
.injector-cart-price {
    font-size: 1.12rem;
    font-weight: 700;
    color: #0a7bff;
    margin-bottom: 16px;
    text-align: center;
}

/* --- Make Enquiry Button --- */
.injector-cart-btn {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37,211,102,0.08);
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    margin-top: auto;
    display: block;
}
.injector-cart-btn:hover {
    background: #128c7e;
    box-shadow: 0 4px 16px rgba(37,211,102,0.16);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .injector-cart-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }
    .injector-cart-card {
        min-height: 340px;
        padding: 18px 10px 16px 10px;
    }
    .injector-cart-img {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 600px) {
    .injector-cart-section {
        padding: 18px 0;
    }
    .injector-cart-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    .injector-cart-card {
        min-height: 260px;
        padding: 12px 6px 12px 6px;
    }
    .injector-cart-img {
        width: 70px;
        height: 70px;
    }
}

/* --- Hide default button outline on click --- */
.injector-cart-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #25d36644;
}

/* Services Section Background Slideshow */
.services-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.services-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
    z-index: 0;
}
.services-bg-slide.active {
    opacity: 0.18;
    z-index: 1;
}
.services {
    position: relative;
    background: #f0f8ff;
    overflow: hidden;
}
/* Why Choose Section Background Slideshow */
.whychoose-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.whychoose-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
    z-index: 0;
}
.whychoose-bg-slide.active {
    opacity: 0.18;
    z-index: 1;
}
.why-choose-us {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}
/* Ensure content overlays slideshow */
.services-container,
.why-choose-us > .container {
    position: relative;
    z-index: 2;
}
/* Specialist Spares Section */
.specialist-spares {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
}
.spares-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-top: 32px;
}
.spare-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 18px 18px 18px;
    text-align: center;
    width: 210px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.spare-card:hover {
    box-shadow: 0 6px 24px rgba(255,102,0,0.13);
    transform: translateY(-4px) scale(1.04);
}
.spare-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 12px;
}
.spare-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ff6600;
}
.spare-card p {
    font-size: 0.97rem;
    color: #000;
}
.more-spares-note {
    margin-top: 32px;
    text-align: center;
    font-size: 1.08rem;
    color: #222;
}
@media (max-width: 900px) {
    .spares-grid {
        gap: 18px;
    }
    .spare-card {
        width: 44vw;
        min-width: 160px;
        max-width: 260px;
    }
}
@media (max-width: 600px) {
    .spares-grid {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .spare-card {
        width: 90vw;
    }
}
.spares-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.spares-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
    z-index: 0;
}
.spares-bg-slide.active {
    opacity: 0.18;
    z-index: 1;
}
.specialist-spares {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}
.specialist-spares > .container {
    position: relative;
    z-index: 2;
}

/* Remove underline from links in the spares section */
.specialist-spares .spare-card {
    text-decoration: none !important;
}
.specialist-spares .spare-card h3,
.specialist-spares .spare-card p {
    color: inherit;
}
.specialist-spares .spare-card:visited {
    color: inherit;
    text-decoration: none !important;
}
.specialist-spares .spare-card:hover {
    text-decoration: none !important;
}

/* --- Rotor Heads Table Styling --- */
.rotor-heads-table-responsive {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}
.rotor-heads-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
}
.rotor-heads-table caption.table-caption {
    caption-side: top;
    text-align: center;
    font-weight: 600;
    font-size: 1.1em;
    color: #222;
    background: #f5f7f9;
    padding: 10px 0 8px 0;
    border-radius: 8px 8px 0 0;
}
.rotor-heads-table th, .rotor-heads-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
}
.rotor-heads-table th {
    background: #f5f7f9;
    color: #222;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 2;
}
.rotor-heads-table tr:nth-child(even) td {
    background: #fafbfc;
}
.rotor-heads-table tr:hover td {
    background: #f0f6fa;
}
.section-header td, .section-header th {
    background: #3498db !important;
    color: #fff !important;
    font-weight: bold;
}
.subsection-header td, .subsection-header th {
    background: #ecf0f1 !important;
    color: #222 !important;
    font-weight: bold;
}
.no-results {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-style: italic;
}
@media (max-width: 900px) {
    .rotor-heads-table th, .rotor-heads-table td {
        padding: 7px 6px;
        font-size: 13px;
    }
    .rotor-heads-table caption.table-caption {
        font-size: 1em;
    }
}
/* --- End Rotor Heads Table Styling --- */

/* --- Engine Order Notice Styling --- */
.engine-order-notice {
  font-size: 1.18rem;
  color: #b22222;
  background: #fffbe7;
  border-left: 5px solid #f7b500;
  padding: 1rem 1.5rem;
  margin: 0 0 2rem 0;
  font-weight: bold;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(247,181,0,0.07);
  letter-spacing: 0.2px;
}
/* --- End Engine Order Notice Styling --- */

/* --- Engine Card Button Alignment --- */
.injector-cart-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.injector-cart-details {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
}
.injector-cart-title,
.injector-cart-desc {
  margin-bottom: 0.7rem;
}
.injector-cart-btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: 140px;
}
@media (max-width: 700px) {
  .injector-cart-btn {
    min-width: 100px;
  }
}
/* Add space between details and button */
.injector-cart-details > .injector-cart-btn {
  margin-top: 1.2rem;
}
/* --- End Engine Card Button Alignment --- */

/* --- Pump Tabs Button Alignment --- */
.pump-tabs .service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.pump-tabs .service-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
}
.pump-tabs .service-link h3,
.pump-tabs .service-link p {
  margin-bottom: 0.7rem;
}
.pump-tabs .service-link .btn {
  margin-top: auto;
  align-self: center;
  min-width: 140px;
}
@media (max-width: 900px) {
  .pump-tabs .service-link .btn {
    min-width: 100px;
  }
}
.pump-tabs .service-link > .btn {
  margin-top: 1.2rem;
}
/* --- End Pump Tabs Button Alignment --- */

/* --- Injector Pump Card Button Alignment --- */
.injector-cart-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.injector-cart-details {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
}
.injector-cart-title,
.injector-cart-desc {
  margin-bottom: 0.7rem;
}
.injector-cart-btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: 140px;
}
@media (max-width: 700px) {
  .injector-cart-btn {
    min-width: 100px;
  }
}
.injector-cart-details > .injector-cart-btn {
  margin-top: 1.2rem;
}
/* --- End Injector Pump Card Button Alignment --- */

/* Modern search bar and filter tabs for nozzle catalog */
.modern-controls {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}
.search-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 0;
}
.search-bar input[type="text"] {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafbfc;
    transition: border 0.2s;
}
.search-bar input[type="text"]:focus {
    border-color: #3498db;
    outline: none;
    background: #fff;
}
.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c1;
    font-size: 1.1em;
    pointer-events: none;
}
.filter-tabs-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-tab {
    background: #f5f7f9;
    border: 1.5px solid #d1d5db;
    border-radius: 5px;
    padding: 8px 18px;
    font-size: 1rem;
    color: #222;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, color 0.2s;
    outline: none;
}
.filter-tab.active, .filter-tab:focus {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    font-weight: 600;
}
.filter-tab:hover:not(.active) {
    background: #eaf4fb;
    color: #3498db;
    border-color: #b8d8f4;
}
@media (max-width: 900px) {
    .modern-controls {
        gap: 10px;
    }
    .filter-tabs-group {
        flex-direction: column;
        gap: 10px;
    }
    .search-bar {
        max-width: 100%;
    }
}

/* --- Extracted from index.html inline <style> --- */
.promo-float {
    position: fixed;
    bottom: 110px;
    right: 32px;
    width: 70px;
    height: 70px;
    z-index: 9999;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: promo-rotate 2.5s linear infinite;
    border: 2px solid #ff6600;
    transition: box-shadow 0.2s, transform 0.2s;
}
.promo-float:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    transform: scale(1.08);
}
.promo-float img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 2px;
}
.promo-float-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff6600;
    background: #fff3e0;
    border-radius: 8px;
    padding: 2px 8px;
    margin-top: 2px;
    box-shadow: 0 1px 4px rgba(255,102,0,0.08);
}
.promo-float-icons {
    position: fixed;
    bottom: 190px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.promo-float-icons.show {
    opacity: 1;
    pointer-events: auto;
}
.promo-float-icon {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #ff6600;
}
.promo-float-icon:hover {
    box-shadow: 0 6px 18px rgba(255,102,0,0.22);
    transform: scale(1.08);
}
.promo-float-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}
@keyframes promo-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 600px) {
    .promo-float {
        right: 12px;
        bottom: 90px;
        width: 54px;
        height: 54px;
    }
    .promo-float img {
        width: 32px;
        height: 32px;
    }
    .promo-float-text {
        font-size: 0.8rem;
        padding: 1px 6px;
    }
    .promo-float-icons {
        right: 12px;
        bottom: 140px;
        gap: 10px;
    }
    .promo-float-icon {
        width: 38px;
        height: 38px;
    }
    .promo-float-icon img {
        width: 22px;
        height: 22px;
    }
}
/* --- End extracted from index.html --- */

/* --- WhatsApp Floating Button: Ensure always visible and on top --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, background-color 0.2s;
    text-decoration: none;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.whatsapp-float:hover, .whatsapp-float:focus {
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    background-color: #128c7e;
    text-decoration: none;
    outline: none;
}
.whatsapp-float i {
    pointer-events: none;
}
@media (max-width: 600px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 28px;
        bottom: 16px;
        right: 16px;
    }
}
/* --- End extracted from engines_for_sale.html --- */

/* WhatsApp Floating Button Styles (from injector_testing_recalibration.html) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    background-color: #128c7e;
    text-decoration: none;
}
/* Service Hero Section Styles */
.service-hero-bg {
    position: relative;
    background-image: url('assets/images/injector_main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 70, 160, 0.60); /* Blue with 60% opacity */
    z-index: 1;
    border-radius: inherit;
}
.service-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
/* Injector Tabs Styles */
.injector-tabs .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 18px 20px 18px;
    margin: 0 12px 24px 12px;
    min-width: 280px;
    max-width: 340px;
}
.service-tile-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #f0f4fa;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.injector-tabs .service-link {
    text-align: center;
    display: block;
}
.injector-tabs .service-link i {
    color: #0074d9;
    font-size: 2.1rem;
    margin-bottom: 8px;
}
.injector-tabs h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #003c78;
    margin-bottom: 8px;
}
.injector-tabs p {
    font-size: 0.98rem;
    color: #4a5a6a;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .injector-tabs .service-card {
        min-width: 220px;
        max-width: 100%;
        margin: 0 0 18px 0;
    }
    .service-tile-img {
        width: 60px;
        height: 60px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    background-color: #128c7e;
    text-decoration: none;
}

/* Pump Tabs Styling */
.pump-tabs .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 18px 20px 18px;
    margin: 0 12px 24px 12px;
    min-width: 280px;
    max-width: 340px;
}
.service-tile-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #f0f4fa;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.pump-tabs .service-link {
    text-align: center;
    display: block;
}
.pump-tabs .service-link i {
    color: #0074d9;
    font-size: 2.1rem;
    margin-bottom: 8px;
}
.pump-tabs h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #003c78;
    margin-bottom: 8px;
}
.pump-tabs p {
    font-size: 0.98rem;
    color: #4a5a6a;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .pump-tabs .service-card {
        min-width: 220px;
        max-width: 100%;
        margin: 0 0 18px 0;
    }
    .service-tile-img {
        width: 60px;
        height: 60px;
    }
}

/* Injector Pump Testing & Recalibration Hero Background */
.service-hero-bg.injector-pump-bg {
    background-image: url('assets/images/injector_pump_main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Turbocharger Service Hero Background */
.service-hero-bg.turbo-bg {
    background-image: url('assets/images/turbo_main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Turbo Tabs Styling */
.turbo-tabs .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 18px 20px 18px;
    margin: 0 12px 24px 12px;
    min-width: 280px;
    max-width: 340px;
}
.service-tile-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #f0f4fa;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.turbo-tabs .service-link {
    text-align: center;
    display: block;
}
.turbo-tabs .service-link i {
    color: #0074d9;
    font-size: 2.1rem;
    margin-bottom: 8px;
}
.turbo-tabs h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #003c78;
    margin-bottom: 8px;
}
.turbo-tabs p {
    font-size: 0.98rem;
    color: #4a5a6a;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .turbo-tabs .service-card {
        min-width: 220px;
        max-width: 100%;
        margin: 0 0 18px 0;
    }
    .service-tile-img {
        width: 60px;
        height: 60px;
    }
}

/* Process Map Styling */
.process-map {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 40px 0 0 0;
    flex-wrap: wrap;
}
.process-stage {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0, 60, 120, 0.08);
    padding: 32px 28px 28px 28px;
    min-width: 290px;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0 0 0 0;
}
.process-stage-horizontal {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.process-stage-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.stage-number {
    background: #0074d9;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    box-shadow: 0 2px 8px rgba(0, 60, 120, 0.10);
}
.stage-icon {
    color: #0074d9;
    font-size: 2.1rem;
    background: #eaf4fb;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-stage h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin: 10px 0 10px 0;
    color: #003c78;
    text-align: center;
}
.process-stage p {
    font-size: 1rem;
    color: #444;
    text-align: center;
}
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 0px;
    min-width: 40px;
}
.arrow-tab {
    width: 36px;
    height: 6px;
    background: linear-gradient(90deg, #0074d9 60%, #eaf4fb 100%);
    border-radius: 3px;
    margin-bottom: 4px;
}
.process-arrow i {
    color: #0074d9;
    font-size: 1.6rem;
}
@media (max-width: 1024px) {
    .process-map {
        flex-direction: column;
    }
    /* Responsive adjustments for process-arrow, arrow-tab, etc. can be added here if needed */
}

/* Margin top utility for modern-controls */
.modern-controls-mt {
    margin-top: 2.5rem;
}

/* Style for current date display in injectors_for_sale.html */
.current-date {
    text-align: right;
    font-size: 1rem;
    color: #555;
}

/* Utility Classes */
.no-underline {
  text-decoration: none !important;
}
.no-border {
  border-bottom: none !important;
}

/* Engines hero background image */
.engines-hero-bg {
    background-image: url('../assets/images/slide1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Fuel System Hero Background */
.fuel-system-hero-bg {
    background-image: url('../assets/images/fuel_system.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Engine Diagnostics Hero Background */
.service-hero-bg.engine-diagnostics {
    background-image: url('../assets/images/engine_diagnostics.webp');
    background-size: cover;
    background-position: center;
}

.service-hero-bg {
    background-image: url('../assets/images/fuel_tank.webp');
    background-size: cover;
    background-position: center;
}

.auto-recovery-bg {
    background-image: url('../assets/images/auto_recovery.webp');
    background-size: cover;
    background-position: center;
}

.injector-pump-bg {
    background-image: url('../assets/images/injector_pump_main.webp');
    background-size: cover;
    background-position: center;
}

.turbo-bg {
    background-image: url('../assets/images/turbo_main.webp');
    background-size: cover;
    background-position: center;
}
