/* Car Detailing Page Styles - Dark Theme */

/* Ceramic Coating Introduction Section */
.ceramic-intro {
    background: #1a1a1a;
    backdrop-filter: blur(10px);
    padding: 6rem 0;
}

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

.ceramic-intro-text h2 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ceramic-intro-text p {
    font-family: 'Source Serif Pro', 'Georgia', 'Times New Roman', serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.ceramic-intro-image {
    position: relative;
}

.ceramic-intro-placeholder {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ceramic-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ceramic Coating Packages Section */
.ceramic-packages {
    background: #0a0a0a;
    backdrop-filter: blur(10px);
    padding: 6rem 0;
}

.coating-selector {
    text-align: center;
    margin-bottom: 3rem;
}

.coating-selector h4 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coating-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.coating-btn {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.coating-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-1px);
    color: #ffffff;
}

.coating-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.coating-label {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ceramic coating cards now use standard pricing-card classes */

/* Ceramic Coating Process Section */
.ceramic-process {
    padding: 3rem 0;
}

.ceramic-process .process-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceramic-process .process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.ceramic-process .process-list-container {
    display: flex;
    flex-direction: column;
}

.ceramic-process .process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ceramic-process .process-list li {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.ceramic-process .process-list li::before {
    content: "✓";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.ceramic-process .process-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.ceramic-process .process-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceramic-process .process-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ceramic-process .process-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Responsive Design for Ceramic Process */
@media (max-width: 768px) {
    .ceramic-process {
        padding: 2rem 0;
    }
    
    .ceramic-process .process-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ceramic-process .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ceramic-process .process-list li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .ceramic-process .process-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .ceramic-process .process-title {
        font-size: 1.3rem;
    }
    
    .ceramic-process .process-list li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
    .ceramic-process .process-content {
        gap: 1.5rem;
    }
    
    .ceramic-process .process-image {
        max-width: 100%;
    }
}

/* Ceramic Coating Climate Benefits Section */
.ceramic-climate-benefits {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.ceramic-climate-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ceramic-climate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.ceramic-climate-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

.ceramic-climate-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ceramic-climate-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.ceramic-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.ceramic-benefits-list li {
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.ceramic-benefits-list li::before {
    content: "✓";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

.ceramic-benefits-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.ceramic-climate-conclusion {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #e2e8f0;
    text-align: center;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Ceramic Climate Benefits */
@media (max-width: 768px) {
    .ceramic-climate-benefits {
        min-height: 400px;
    }
    
    .ceramic-climate-content {
        padding: 1.2rem 1rem;
    }
    
    .ceramic-climate-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .ceramic-climate-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .ceramic-benefits-list li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .ceramic-climate-conclusion {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ceramic-climate-benefits {
        min-height: 350px;
    }
    
    .ceramic-climate-content {
        padding: 1rem 0.8rem;
    }
    
    .ceramic-climate-title {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    
    .ceramic-climate-text {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .ceramic-benefits-list li {
        font-size: 0.75rem;
        padding-left: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .ceramic-climate-conclusion {
        font-size: 0.75rem;
    }
}

/* Show only the selected ceramic coating duration cards */
.pricing-card[data-duration]:not([data-duration="2year"]):not([data-duration="1step"]) {
    display: none;
}

/* When a ceramic coating duration is selected, show only those cards */
.ceramic-packages[data-selected-duration="2year"] .pricing-card[data-duration="2year"] {
    display: flex;
}

.ceramic-packages[data-selected-duration="2year"] .pricing-card[data-duration]:not([data-duration="2year"]) {
    display: none;
}

.ceramic-packages[data-selected-duration="6year"] .pricing-card[data-duration="6year"] {
    display: flex;
}

.ceramic-packages[data-selected-duration="6year"] .pricing-card[data-duration]:not([data-duration="6year"]) {
    display: none;
}

.ceramic-packages[data-selected-duration="10year"] .pricing-card[data-duration="10year"] {
    display: flex;
}

.ceramic-packages[data-selected-duration="10year"] .pricing-card[data-duration]:not([data-duration="10year"]) {
    display: none;
}

/* Paint correction step selection rules */
.ceramic-packages[data-selected-duration="1step"] .pricing-card[data-duration="1step"] {
    display: flex;
}

.ceramic-packages[data-selected-duration="1step"] .pricing-card[data-duration]:not([data-duration="1step"]) {
    display: none;
}

.ceramic-packages[data-selected-duration="2step"] .pricing-card[data-duration="2step"] {
    display: flex;
}

.ceramic-packages[data-selected-duration="2step"] .pricing-card[data-duration]:not([data-duration="2step"]) {
    display: none;
}

.ceramic-packages[data-selected-duration="3step"] .pricing-card[data-duration="3step"] {
    display: flex;
}

.ceramic-packages[data-selected-duration="3step"] .pricing-card[data-duration]:not([data-duration="3step"]) {
    display: none;
}

.hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing-section {
    background: #1a1a1a;
    backdrop-filter: blur(10px);
    padding: 6rem 0;
}

/* Vehicle Selector */
.vehicle-selector {
    text-align: center;
    margin-bottom: 3rem;
}

.vehicle-selector h4 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vehicle-btn {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.vehicle-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-1px);
    color: #ffffff;
}

.vehicle-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.vehicle-label {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Booking Form CTA Section */
.booking-form-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.booking-form-or {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Additional Add-On Services */
.addon-services {
    margin-top: 4rem;
    text-align: center;
}

.addon-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.addon-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(184, 169, 201, 0.2);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.addon-item h3 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(184, 169, 201, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.pricing-card.featured {
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.featured-badge {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(184, 169, 201, 0.1);
}

.package-name {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 500;
}

.price-amount {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.pricing-card .card-content {
    padding: 2rem !important;
    flex-grow: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-height: 0;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
    background: transparent !important;
    height: 100%;
}

.pricing-card .package-description {
    font-family: 'Source Serif Pro', 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.pricing-card .services-included {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
    max-height: none;
    display: flex;
    flex-direction: column;
}

.pricing-card .services-included h4 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.pricing-card .service-category {
    margin-bottom: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    overflow: visible;
    word-wrap: break-word;
}

.pricing-card .service-category h5 {
    display: none;
}

.pricing-card .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.pricing-card .service-list li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0.5rem 0;
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
}

.pricing-card .service-list li:last-child {
    border-bottom: none;
}

.pricing-card .service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 0.9rem;
    top: 0.5rem;
}

.pricing-card .service-list li strong {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f59e0b;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.pricing-card .service-list li strong::before {
    content: "";
    display: none;
}

.pricing-btn {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 100%;
    margin-top: auto;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-section {
        padding: 4rem 0;
    }
    
    .vehicle-selector {
        margin-bottom: 2rem;
    }
    
    .vehicle-selector h4 {
        font-size: 1.1rem;
    }
    
    .vehicle-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vehicle-btn {
        min-width: 160px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .addon-services {
        margin-top: 3rem;
    }
    
    .addon-title {
        font-size: 1.5rem;
    }
    
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .addon-item {
        padding: 1.2rem 0.8rem;
        min-height: 70px;
    }
    
    .addon-item h3 {
        font-size: 0.9rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 500px;
    }
    
    .pricing-card {
        min-height: 500px;
        height: auto;
        overflow: visible;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .pricing-card .service-category {
        padding: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-section {
        padding: 3rem 0;
    }
    
    .vehicle-selector h4 {
        font-size: 1rem;
    }
    
    .vehicle-btn {
        min-width: 140px;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .addon-services {
        margin-top: 2rem;
    }
    
    .addon-title {
        font-size: 1.3rem;
    }
    
    .addon-item {
        padding: 1rem 0.6rem;
    }
    
    .addon-item h3 {
        font-size: 0.85rem;
    }
    
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .addon-item {
        min-height: 60px;
    }
    
    .pricing-cards {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .pricing-card {
        min-height: 450px;
        overflow: visible;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .package-name {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .package-description {
        font-size: 0.95rem;
    }
    
    .service-list li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .pricing-card .service-category h5 {
        display: none;
    }
    
    .pricing-card .service-category {
        padding: 0;
        margin-bottom: 0;
    }
    
    .pricing-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .booking-form-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .booking-form-or {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .ceramic-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ceramic-intro-text h2 {
        font-size: 2rem;
    }
    
    .ceramic-intro-placeholder {
        height: 300px;
    }
    
    .coating-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .coating-btn {
        min-width: 200px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .ceramic-pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 500px;
    }
    
    .ceramic-pricing-card {
        min-height: 700px;
        height: auto;
    }
    
    .ceramic-pricing-card .card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .ceramic-pricing-card .card-content {
        padding: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .ceramic-pricing-card .package-name {
        font-size: 1.5rem;
    }
    
    .ceramic-pricing-card .price-amount {
        font-size: 2rem;
    }
}

/* Paint Correction Process Section */
.paint-process {
    background: rgba(10, 14, 26, 0.9);
    padding: 4rem 0;
}

.paint-process .process-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paint-process .process-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    counter-reset: step-counter;
}

.paint-process .process-list li {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    counter-increment: step-counter;
}

.paint-process .process-list li::before {
    content: counter(step-counter) ".";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.paint-process .process-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Paint Correction Benefits Section */
.paint-benefits {
    background: rgba(10, 14, 26, 0.9);
    padding: 4rem 0;
}

.paint-benefits .benefits-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paint-benefits .benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.paint-benefits .benefits-list-container {
    display: flex;
    flex-direction: column;
}

.paint-benefits .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: benefit-counter;
}

.paint-benefits .benefits-list li {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    counter-increment: benefit-counter;
}

.paint-benefits .benefits-list li::before {
    content: counter(benefit-counter) ".";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.paint-benefits .benefits-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.paint-benefits .benefits-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paint-benefits .benefits-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.paint-benefits .benefits-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles for paint-process */
@media (max-width: 768px) {
    .paint-process {
        padding: 3rem 0;
    }
    .paint-process .process-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .paint-process .process-list li {
        font-size: 0.9rem;
        padding-left: 2.5rem;
    }
}

/* Responsive styles for paint-benefits */
@media (max-width: 768px) {
    .paint-benefits {
        padding: 3rem 0;
    }
    .paint-benefits .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .paint-benefits .benefits-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .paint-benefits .benefits-list li {
        font-size: 0.9rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .paint-benefits {
        padding: 2rem 0;
    }
    .paint-benefits .benefits-content {
        gap: 1.5rem;
    }
    .paint-benefits .benefits-title {
        font-size: 1.4rem;
    }
    .paint-benefits .benefits-list li {
        font-size: 0.8rem;
        padding-left: 2rem;
    }
}