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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

.accent {
    color: #ff6b35;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.phone-icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.injector-graphic {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.injector-before,
.injector-after {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.injector-dirty,
.injector-clean {
    width: 80px;
    height: 120px;
    border-radius: 10px;
    position: relative;
}

.injector-dirty {
    background: linear-gradient(180deg, #8b4513, #654321);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.injector-clean {
    background: linear-gradient(180deg, #c0c0c0, #808080);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.spray-bad,
.spray-good {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    margin-top: 0.5rem;
}

.spray-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
}

.spray-dots.bad {
    gap: 4px;
}

.spray-dots.good {
    gap: 2px;
}

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #666;
    opacity: 0.8;
}

.spray-dots.bad .dot {
    background: #8b4513;
}

.spray-dots.bad .dot.large {
    width: 6px;
    height: 6px;
    background: #654321;
}

.spray-dots.good .dot {
    background: #28a745;
    width: 2px;
    height: 2px;
    opacity: 0.9;
}

.spray-dots.good {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    width: 16px;
}

.arrow {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
}

.injector-before span,
.injector-after span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
}

.spray-label {
    font-size: 0.7rem !important;
    color: #999 !important;
    font-style: italic;
    margin-top: -0.5rem;
}

/* Remove old spray pattern graphic styles */
.spray-pattern-graphic {
    display: none;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.service-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-type {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-type.diesel {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-type .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-type h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.turnaround {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.service-type.diesel .turnaround {
    background: #e74c3c;
}

.pricing-grid-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-type.diesel .price-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.price-item.featured {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    transform: scale(1.05);
}

.count {
    font-weight: 600;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.service-type.diesel .price,
.price-item.featured .price {
    color: white;
}

.payment-note {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    font-weight: 500;
}

.service-type.diesel .payment-note {
    color: #ccc;
}

.additional-services {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.additional-services h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.service-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.extra-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-name {
    font-weight: 600;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.service-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 10px;
    color: #856404;
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.main-service {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.main-service h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.main-service p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 1.5rem;
}

.feature span:last-child {
    font-weight: 600;
    color: #1a1a1a;
}

.service-type-label {
    font-size: 0.8rem;
    color: #ddd;
    font-style: italic;
    display: block;
    margin-top: 0.25rem;
}

.phone-highlight {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.phone-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.phone-highlight span {
    cursor: pointer;
}

.video-phone {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-phone:hover {
    color: #ff8c42;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-color: #ff6b35;
}

.tab-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.tab-btn.active:hover {
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid-single {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
}

.pricing-card.premium {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    transform: scale(1.05);
}

.diesel-card {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    max-width: 400px;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.per-unit {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
}

.pricing-card.premium .per-unit {
    color: #bbb;
}

.vehicle-examples {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.pricing-card.premium .vehicle-examples {
    background: rgba(255, 255, 255, 0.1);
}

.vehicle-examples p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.pricing-card.premium .vehicle-examples p {
    color: #ddd;
}

.turnaround-badge {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.turnaround-badge.diesel {
    background: #e74c3c;
}

.diesel-features {
    margin: 1.5rem 0;
    text-align: left;
}

.feature-item {
    padding: 0.5rem 0;
    color: #ccc;
}

.cta-price {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card.popular .cta-price,
.pricing-card.premium .cta-price,
.diesel-card .cta-price {
    background: white;
    color: #ff6b35;
}

.diesel-card .cta-price {
    color: #2c3e50;
}

.pricing-card.premium .cta-price {
    color: #2c3e50;
}

.cta-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #ff8c42, #ffa366);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.video-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: none;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.video-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 0;
}

.video-text {
    text-align: left;
}

.video-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.video-highlight p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    color: #666;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-link:hover {
    color: #ff6b35;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.payment-methods {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.stars {
    font-size: 3rem;
    margin: 1rem 0;
}

.reviews-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.reviews-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reviews-link:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
}

.footer-phone {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-phone:hover {
    color: #ff8c42;
}

.footer-contact p {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .phone-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .service-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-extras {
        grid-template-columns: 1fr;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .injector-graphic {
        flex-direction: column;
        gap: 1rem;
    }
    
    .spray-pattern-graphic {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .video-highlight {
        padding: 2rem;
    }
    
    .video-highlight h3 {
        font-size: 1.5rem;
    }
    
    .video-highlight p {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .service-type {
        padding: 2rem;
    }
    
    .additional-services {
        padding: 2rem;
    }
    
    .video-highlight {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .extra-service {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
