/*
Theme Name: BP Detailing Custom
Description: Custom WordPress theme inspired by BP Auto Detailing
Version: 1.0
Author: Custom Developer
*/

/* CSS Custom Properties - Color Palette */
:root {

    --primary-green: #66c137;
    --primary-green-dark: #4a9c29;
    --primary-green-darker: #2d7d1a;
    --primary-green-darkest: #236617;
    --primary-green-light: #7dd142;
    --primary-green-lighter: #8ee954;
    --primary-green-rgb: 102, 193, 55;
    --text-dark: #1a1a1a;
    --text-medium: #333;
    --text-light: #666;
    --white: #fff;
    --background-light: #f8f9fa;
}

/* Removed global green button styling */

/* Removed global green button hover styling */

/* Accent and focus states */
:focus {
    outline-color: var(--primary-green) !important;
}

/* Removed duplicate green button forcing */

/* Accent and focus states */
:focus {
    outline-color: var(--primary-green) !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1240px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Header Styles - Force styles for live site */
.site-header {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.header-main {
    position: relative !important;
}

.header-top {
    background: #1a1a1a !important;
    color: #fff !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
}

.header-top .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.header-contact {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
}

.header-contact span,
.header-contact a {
    color: #fff !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.header-contact a:hover {
    color: #66c137 !important;
}

.header-social {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.header-main {
    padding: 12px 0 !important;
    background: #fff !important;
}

.header-main .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
    min-height: 60px !important;
}

/* Logo Styling - Force styles for live site */
.site-branding {
    flex-shrink: 0 !important;
    min-width: 250px !important;
}

.site-logo {
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

/* Override global green styling for header elements */
.site-header a,
.site-header .nav-menu a,
.site-header .custom-logo-link,
.site-header .site-logo,
.site-header .phone-number,
.header-contact a,
.header-social a {
    background: transparent !important;
    color: #333 !important;
    border: none !important;
}

.header-top .header-contact a,
.header-top .header-social a {
    color: #fff !important;
}

.header-contact a:hover {
    color: #66c137 !important;
    background: transparent !important;
}

.nav-menu a:hover {
    color: #66c137 !important;
    background: transparent !important;
}

/* Custom Logo Image Styling */
.site-logo img {
    max-height: 60px !important;
    max-width: 250px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
}

.custom-logo-link {
    display: block !important;
    text-decoration: none !important;
}

.custom-logo {
    max-height: 60px !important;
    max-width: 250px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.custom-logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 26px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 2px;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 13px;
    color: #66c137;
    font-weight: 500;
    white-space: nowrap;
}

.site-logo:hover .logo-text {
    color: #66c137;
}

/* Mobile Logo Responsive Styles */
@media (max-width: 768px) {
    .site-branding {
        min-width: 200px;
    }
    
    .custom-logo,
    .site-logo img {
        max-height: 45px;
        max-width: 200px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .site-branding {
        min-width: 150px;
    }
    
    .custom-logo,
    .site-logo img {
        max-height: 35px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
}

/* Desktop Navigation - Override green styling */
.desktop-nav {
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
    justify-content: center !important;
    margin: 0 20px !important;
}

/* Ensure desktop nav is hidden on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    position: relative !important;
}

.nav-menu a {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    padding: 10px 0 !important;
    transition: color 0.3s ease !important;
    position: relative !important;
    white-space: nowrap !important;
    background: transparent !important;
    border: none !important;
}

.nav-menu a:hover {
    color: #66c137 !important;
    background: transparent !important;
}

.nav-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: #66c137 !important;
    transition: width 0.3s ease !important;
}

.nav-menu a:hover::after {
    width: 100% !important;
}

/* Header Actions - Override green styling */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-shrink: 0 !important;
}

/* Header Get Quote Button - Green styling */
.header-buttons .btn-primary,
.mobile-header-buttons .btn-primary {
    background: #66c137 !important;
    color: #fff !important;
    border: 2px solid #66c137 !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.header-buttons .btn-primary:hover,
.mobile-header-buttons .btn-primary:hover {
    background: #5ab22e !important;
    border-color: #5ab22e !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(102, 193, 55, 0.4) !important;
}

.phone-number {
    color: #333 !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: rgba(102, 193, 55, 0.05);
}

.phone-number:hover {
    color: #66c137;
    background: rgba(102, 193, 55, 0.15);
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-secondary {
    background: #66c137 !important;
    color: white !important;
    border: 2px solid #66c137 !important;
}

.btn-secondary:hover {
    background: #4a9c29 !important;
    color: white !important;
    border-color: #4a9c29 !important;
}

.btn-primary {
    background: transparent !important;
    color: #333 !important;
    border: 2px solid #333 !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
}

.btn-primary:hover {
    background: rgba(51, 51, 51, 0.1) !important;
    color: #333 !important;
    border-color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Header scroll effect */

/* Mobile Menu Toggle - Hidden on Desktop, Visible on Mobile */
.mobile-menu-toggle {
    display: none !important;
    width: 30px;
    height: 30px;
    position: relative;
    flex-direction: column;
    justify-content: space-around;
    padding: 5px 0;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    z-index: 1002;
}

/* Ensure hamburger is completely hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Mobile Navigation - Hidden by Default */
.mobile-navigation {
    display: none;
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-navigation.active {
    display: block;
    max-height: 500px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.mobile-nav-menu li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #66c137;
    background-color: #f8f9fa;
}

/* Mobile Header Buttons */
.mobile-header-buttons {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.mobile-phone-btn {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.mobile-phone-btn:hover {
    background: #66c137;
    color: #fff;
    border-color: #66c137;
}

.mobile-btn {
    display: block;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}

/* Header scroll effect */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-header.scrolled .header-top {
    display: none;
}

/* Social Links */
.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background-color: #66c137;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-top {
        padding: 8px 0;
    }
    
    .header-contact {
        gap: 15px;
    }
    
    .header-main .container {
        padding: 0 15px;
    }
    
    .site-branding {
        min-width: 200px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 12px;
    }
    
    .desktop-nav {
        margin: 0 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .phone-number {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none !important;
    }
    
    .header-main {
        padding: 10px 0;
        position: relative;
    }
    
    .header-main .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 50px;
        align-items: center;
    }
    
    .site-branding {
        min-width: auto;
        flex: 1;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
    
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        margin-left: 15px;
        z-index: 1002;
    }
    
    /* Mobile Navigation Display */
    .mobile-navigation {
        display: block;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    /* Mobile Navigation Overlay */
    body.mobile-menu-open .mobile-navigation {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 8px 0;
    }
    
    .header-main .container {
        padding: 0 12px;
        min-height: 45px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    /* Mobile menu improvements for small screens */
    .mobile-menu-toggle {
        width: 28px !important;
        height: 28px !important;
        margin-left: 10px !important;
    }
    
    .hamburger-line {
        height: 2px !important;
    }
    
    .mobile-navigation {
        padding: 0 !important;
    }
    
    .mobile-nav-menu {
        padding: 15px 0 !important;
    }
    
    .mobile-nav-menu a {
        font-size: 15px !important;
        padding: 12px 15px !important;
    }
    
    .mobile-header-buttons {
        padding: 15px !important;
    }
    
    .mobile-phone-btn {
        font-size: 14px !important;
        padding: 12px !important;
        margin-bottom: 10px !important;
    }
    
    .mobile-phone-btn {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 320px) {
    .header-main .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
}

/* Header scroll effect */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-header.scrolled .header-top {
    display: none;
}

/* Social Links */
.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #66c137;
}

/* Mobile Menu Hamburger Animation */
.mobile-menu-toggle {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 5px 0;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(102, 193, 55, 0.8) 50%, 
        rgba(0, 0, 0, 0.7) 100%
    ),
    url('https://images.unsplash.com/photo-1609521263047-f8f205293f24?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0 80px;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(102, 193, 55, 0.1) 0%,
        transparent 50%,
        rgba(102, 193, 55, 0.1) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
        "content features"
        "bottom bottom";
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
    min-height: 80vh;
}

.hero-content {
    grid-area: content;
    animation: slideInLeft 1s ease-out;
    text-align: left;
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    width: 100%;
    display: block;
    clear: both;
    word-wrap: break-word;
}

.hero-content h2 {
    font-size: 28px;
    color: #8ee954;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 32px 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    width: 100%;
    text-align: left;
    display: block;
    clear: both;
    word-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: flex-start;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.hero-btn-primary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Bottom Section */
.hero-bottom {
    grid-area: bottom;
    text-align: center;
    margin-top: 40px;
    padding: 40px 0 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bottom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #66c137;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-bottom p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 30px auto;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-bottom .hero-buttons {
    justify-content: center;
    margin-top: 0;
}

.hero-image {
    grid-area: features;
    position: relative;
    animation: slideInRight 1s ease-out 0.2s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .car-showcase {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image .feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.hero-features li:last-child {
    border-bottom: none;
}

.hero-features li::before {
    content: '✓';
    background: linear-gradient(45deg, #8ee954, #66c137);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Services Section */
.services-preview {
    padding: 80px 0;
    background: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
    border-color: #66c137;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card.popular {
    border-color: #66c137;
    box-shadow: 0 8px 25px rgba(102, 193, 55, 0.2);
}

/* Service Image Styling */
.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: -2px -2px 0 -2px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 193, 55, 0.8), rgba(74, 156, 41, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

/* Service top images - make them round */
.service-top-image {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 auto 20px !important;
    display: block !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    transition: transform 0.3s ease !important;
}

.service-top-image:hover {
    transform: scale(1.05) !important;
}

/* Services Preview Section - Make Get Free Quote buttons green */
.services-preview .btn-primary {
    background: #66c137 !important;
    color: #fff !important;
    border: 2px solid #66c137 !important;
}

.services-preview .btn-primary:hover {
    background: #4a9c29 !important;
    color: #fff !important;
    border-color: #4a9c29 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 193, 55, 0.3) !important;
}

/* Service Content */
.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* Add extra top padding for popular service cards to prevent badge overlap */
.service-card.popular .service-content {
    padding-top: 40px;
}

.service-card:hover {
    border-color: #66c137;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.popular {
    border-color: #66c137;
    box-shadow: 0 5px 20px rgba(0,124,186,0.2);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #66c137, #5bb32e);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(102, 193, 55, 0.4);
    border: 2px solid #fff;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-card:hover .service-badge {
    transform: translateX(-50%) translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(102, 193, 55, 0.6);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 800;
    line-height: 1.2;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    text-align: center;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #66c137, #4a9c29);
    border-radius: 2px;
}

.service-card:hover h3 {
    color: #66c137;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
    background: linear-gradient(90deg, #4a9c29, #66c137);
    transition: all 0.3s ease;
}

.service-features {
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-features p {
    margin-bottom: 6px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.service-price {
    font-size: 18px;
    font-weight: bold;
    color: #66c137;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.service-card .btn {
    margin-top: auto;
    padding: 10px 20px;
    font-size: 13px;
}

/* Service Cards Mobile Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-card.popular .service-content {
        padding-top: 35px;
    }
    
    .service-card h3 {
        font-size: 19px;
        margin-bottom: 15px;
        padding-bottom: 12px;
        letter-spacing: 0.3px;
    }
    
    .service-card h3::after {
        width: 50px;
        height: 2px;
    }
    
    .service-card:hover h3::after {
        width: 65px;
    }
    
    .service-features p {
        font-size: 13px;
    }
    
    .service-price {
        font-size: 16px;
    }
    
    .service-badge {
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 14px;
        font-size: 10px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-card.popular .service-content {
        padding-top: 30px;
    }
    
    .service-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        letter-spacing: 0.2px;
    }
    
    .service-card h3::after {
        width: 40px;
        height: 2px;
    }
    
    .service-card:hover h3::after {
        width: 55px;
    }
    
    /* Responsive adjustments for round images */
    .service-top-image {
        width: 100px !important;
        height: 100px !important;
    }
}

/* About Section with Parallax */
.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: white;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('https://rad.quickworksdigitalsolution.com/wp-content/uploads/2025/09/showsomelove.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
}

/* Parallax Background - Car detailing image */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://rad.quickworksdigitalsolution.com/wp-content/uploads/2025/09/showsomelove.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    will-change: transform;
    z-index: -2;
}

/* Fallback background for browsers that don't support background-attachment: fixed */
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
        top: 0;
        height: 100%;
    }
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(102, 193, 55, 0.15), rgba(0,0,0,0.3)) !important;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.about-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-image {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
    transition: transform 0.3s ease !important;
}

.feature-icon-image:hover {
    transform: scale(1.1) !important;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: none;
}

/* About CTA Buttons */
.about-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.about-cta .btn-primary {
    background: #66c137 !important;
    color: white !important;
    border: 2px solid #66c137 !important;
}

.about-cta .btn-primary:hover {
    background: #4a9c29 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 193, 55, 0.4) !important;
}

.about-cta .btn-secondary {
    background: #66c137 !important;
    color: white !important;
    border: 2px solid #66c137 !important;
}

.about-cta .btn-secondary:hover {
    background: #4a9c29 !important;
    color: white !important;
    border-color: #4a9c29 !important;
    transform: translateY(-3px);
}

/* Feature Item Animations */
.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-item.revealed {
    opacity: 1;
    transform: translateY(0);
    background: rgba(102, 193, 55, 0.2) !important;
    border: 1px solid rgba(102, 193, 55, 0.4) !important;
    box-shadow: 0 8px 25px rgba(102, 193, 55, 0.3) !important;
}

.feature-item.hovered {
    transform: translateY(-10px) scale(1.05);
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
    .about-section {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 40px 0;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 120px;
        height: 120px;
    }
    
    .feature-icon-image {
        width: 120px !important;
        height: 120px !important;
    }
    
    .about-cta .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-features {
        margin: 30px 0;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
}

/* Process Section - Enhanced Design */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23007cba" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
}

.process-section .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.section-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #66c137, #4a9c29);
    margin: 0 auto;
    border-radius: 2px;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #66c137, #4a9c29);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: -1;
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    animation: fadeInDelay 0.8s ease forwards;
}

/* Fallback animation for when JavaScript doesn't load */
@keyframes fadeInDelay {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger the animations */
.process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.process-step:nth-child(4) {
    animation-delay: 0.8s;
}

.process-step.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none; /* Override the fallback animation when JavaScript works */
}

.process-step:nth-child(even) .step-container {
    flex-direction: row-reverse;
    text-align: right;
}

.process-step:nth-child(even) .step-content {
    padding-right: 60px;
    padding-left: 0;
    text-align: right;
}

.process-step:nth-child(even) .step-content h4,
.process-step:nth-child(even) .step-content p,
.process-step:nth-child(even) .step-details {
    text-align: right;
}

.process-step:nth-child(even) .step-details li {
    text-align: right;
    padding-right: 25px;
    padding-left: 0;
}

.process-step:nth-child(even) .step-details li::before {
    right: 0;
    left: auto;
}

.process-step:nth-child(odd) .step-content {
    padding-left: 60px;
    padding-right: 0;
}

.step-container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 120px;
}

.step-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.step-number {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #66c137, #4a9c29);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    border: 4px solid white;
    z-index: 3;
}

.step-icon-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Additional animations for interactions */
.step-number.pulse {
    animation: stepPulse 0.6s ease;
}

@keyframes stepPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.step-content.hovered {
    border-color: rgba(52, 152, 219, 0.3);
}

.step-content.hovered::before {
    animation: arrowGlow 0.6s ease;
}

@keyframes arrowGlow {
    0% { filter: drop-shadow(0 0 0 rgba(52, 152, 219, 0)); }
    50% { filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.5)); }
    100% { filter: drop-shadow(0 0 0 rgba(52, 152, 219, 0)); }
}

.step-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
    z-index: 3;
}

.process-step:nth-child(odd) .step-content::before {
    left: -30px;
    border-right-color: white;
}

.process-step:nth-child(even) .step-content::before {
    right: -30px;
    border-left-color: white;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-content > p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Process CTA Section */
.process-cta {
    margin-top: 80px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary {
    background: transparent !important;
    color: #333 !important;
    border: 2px solid #333 !important;
}

.cta-buttons .btn-primary:hover {
    background: rgba(51, 51, 51, 0.1) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #66c137;
    border: 2px solid #66c137;
}

.cta-buttons .btn-secondary:hover {
    background: #66c137;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Process Section */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
        transform: none;
        z-index: -1;
    }
    
    .process-step:nth-child(even) .step-container,
    .process-step:nth-child(odd) .step-container {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(odd) .step-content {
        padding: 30px 20px;
        margin-left: 100px;
        min-height: auto;
    }
    
    .step-icon {
        min-width: 80px;
        height: 80px;
        position: absolute;
        left: 0;
        top: 0;
        flex-shrink: 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .step-icon-bg {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .step-content::before {
        display: none;
    }
    
    .process-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-section .section-header {
        margin-bottom: 50px;
    }
    
    .process-section h2 {
        font-size: 1.8rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-icon {
        min-width: 60px;
        height: 60px;
        left: 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 25px 15px;
        margin-left: 80px;
        min-height: auto;
    }
    
    .process-cta {
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e1e5e9" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.comparison-section .container {
    position: relative;
    z-index: 2;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.comparison-table {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: linear-gradient(135deg, #66c137, #4a9c29);
    color: white;
    padding: 40px 30px;
    position: relative;
}

.comparison-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #27ae60);
}

.header-item {
    text-align: center;
    padding: 0 20px;
}

.header-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.header-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.vs-divider {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #66c137;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.comparison-rows {
    padding: 0;
}

.comparison-row {
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.row-label {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.label-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.comparison-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 120px;
}

.comparison-item {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.wash-item {
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
}

.wash-item:hover {
    background: linear-gradient(135deg, #fee, #fdd);
    transform: translateX(-5px);
}

.detailing-item {
    background: linear-gradient(135deg, #f0fff4, #e8f5e8);
}

.detailing-item:hover {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    transform: translateX(5px);
}

.status-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.status-icon.negative {
    color: #e74c3c;
    animation: shake 2s infinite;
}

.status-icon.positive {
    color: #27ae60;
    animation: bounce 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.item-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.item-content p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.comparison-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.footer-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.footer-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Footer buttons - Make primary buttons white */
.footer-buttons .btn-primary {
    background: white !important;
    color: #333 !important;
    border: 2px solid white !important;
}

.footer-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Design for Comparison Section */
@media (max-width: 968px) {
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .vs-divider {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .comparison-items {
        grid-template-columns: 1fr;
    }
    
    .comparison-item::before {
        display: none;
    }
    
    .wash-item:hover,
    .detailing-item:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .intro-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .comparison-header {
        padding: 30px 20px;
    }
    
    .header-item h3 {
        font-size: 1.4rem;
    }
    
    .row-label {
        padding: 20px;
        font-size: 1rem;
    }
    
    .comparison-item {
        padding: 25px 20px;
    }
    
    .comparison-footer {
        padding: 40px 20px;
    }
    
    .footer-content h3 {
        font-size: 1.8rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Services Page Styles */
.services-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://rad.quickworksdigitalsolution.com/wp-content/uploads/2025/09/servicesbg.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,400 1000,1000 0,600"/><polygon fill="%23ffffff05" points="0,200 1000,0 1000,600 0,800"/></svg>');
    background-size: cover;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(102, 193, 55, 0.5), rgba(0, 0, 0, 0.6)) !important;
    z-index: 3;
}

.services-hero .container {
    position: relative;
    z-index: 4;
}

.services-hero .hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.services-hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #ecf0f1;
}

.services-hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f39c12;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Service Categories */
.service-categories {
    padding: 100px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #66c137;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    margin: 0 auto 20px auto;
}

.category-icon-image {
    width: 250px !important;
    height: 250px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.category-icon-image:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 30px rgba(102, 193, 55, 0.3) !important;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.category-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-arrow {
    font-size: 1.5rem;
    color: #66c137;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Exterior Services Section */
.exterior-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

/* Featured Service Card */
.featured-service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 2px solid #66c137;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 500px;
}

.featured-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.featured-image {
    position: relative;
    background: linear-gradient(135deg, #66c137, #4a9c29);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon-large {
    font-size: 6rem;
    color: white;
    z-index: 2;
    position: relative;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23ffffff15"/><circle cx="80" cy="40" r="2" fill="%23ffffff20"/><circle cx="40" cy="80" r="4" fill="%23ffffff10"/><circle cx="60" cy="30" r="1" fill="%23ffffff25"/></svg>');
    opacity: 0.6;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: floatRandom 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1.3s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2.6s;
}

@keyframes floatRandom {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.6; }
}

.featured-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.price-tag {
    text-align: right;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #66c137;
    line-height: 1;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.feature-column h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 6px 0;
    color: #6c757d;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #66c137;
    font-weight: bold;
}

.service-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.duration-info,
.guarantee-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #6c757d;
}

.meta-icon {
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-large {
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid #66c137;
    color: #66c137;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #66c137;
    color: white;
    transform: translateY(-2px);
}

/* Regular Services Grid */
.regular-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card.modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card.modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card.premium {
    border: 2px solid #f39c12;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.card-header {
    padding: 30px 25px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Service content styling */

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.premium-bg {
    background: rgba(243, 156, 18, 0.1);
}

.service-title h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.service-tagline {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.card-content {
    padding: 25px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-display .price {
    font-size: 2rem;
    font-weight: 700;
    color: #66c137;
}

.service-card.premium .price-display .price {
    color: #f39c12;
}

.price-note {
    font-size: 0.85rem;
    color: #6c757d;
}

.service-summary {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid #f1f3f4;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #495057;
}

.highlight-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f3f4;
}

.time-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.time-icon {
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-premium {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
}

.btn-premium:hover {
    background: linear-gradient(45deg, #e67e22, #d35400);
}

/* Additional Services Banner */
.additional-services-banner {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin-top: 20px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.banner-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
}

.banner-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.btn-white {
    background: white;
    color: #2c3e50;
    border-color: white;
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Design for Enhanced Exterior Services */
@media (max-width: 1024px) {
    .featured-service-card {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-tag {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .featured-content {
        padding: 30px 25px;
    }
    
    .service-header h3 {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .regular-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .featured-service-card {
        margin: 0 -20px;
        border-radius: 15px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-highlights {
        gap: 10px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-small {
        width: 100%;
    }
}

/* Services Sections */
.services-section {
    padding: 80px 0;
}

.services-section:nth-child(even) {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    border: 2px solid #66c137;
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.service-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #66c137, #4a9c29);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Service card text styling */

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff20"/><circle cx="80" cy="40" r="3" fill="%23ffffff15"/><circle cx="40" cy="80" r="1" fill="%23ffffff25"/></svg>');
    opacity: 0.6;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #66c137;
    margin-bottom: 15px;
}

.service-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding: 6px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 25px;
    padding: 10px 0;
    border-top: 1px solid #e9ecef;
}

/* Premium Packages */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.premium-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.premium-card.featured {
    transform: scale(1.05);
    border-color: #f39c12;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.premium-card.gold {
    border-color: #f39c12;
    border-width: 3px;
}

.premium-card.platinum {
    border-color: #95a5a6;
    border-width: 3px;
}

.premium-card.diamond {
    border-color: #9b59b6;
    border-width: 3px;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #27ae60, #229954);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
}

.premium-header {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.premium-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.premium-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.premium-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #f39c12;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.premium-content {
    padding: 30px;
}

.premium-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.premium-features li {
    padding: 10px 0;
    color: #495057;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f3f4;
}

.premium-features li:last-child {
    border-bottom: none;
}

.premium-duration {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 2px solid #f1f3f4;
}

.btn-gold {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
}

.btn-platinum {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
    border: none;
}

.btn-diamond {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    border: none;
}

/* Protection Services */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.protection-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.protection-card.ceramic {
    border-image: linear-gradient(45deg, #66c137, #4a9c29) 1;
}

.protection-card.ppf {
    border-image: linear-gradient(45deg, #e74c3c, #c0392b) 1;
}

.protection-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
}

.protection-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.protection-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.protection-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.protection-tagline {
    font-size: 1.2rem;
    color: #f39c12;
    font-weight: 600;
}

.protection-content {
    padding: 40px;
}

.protection-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.protection-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.protection-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #66c137;
    text-align: center;
    margin-bottom: 15px;
}

.protection-duration {
    text-align: center;
    color: #6c757d;
    margin-bottom: 25px;
}

.btn-ceramic {
    background: linear-gradient(45deg, #66c137, #4a9c29);
    color: white;
    border: none;
}

.btn-ppf {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-cta {
    padding: 100px 0;
    background: transparent !important;
    color: white;
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-cta .cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f39c12;
}

.guarantee-icon {
    font-size: 1.5rem;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-hero h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .premium-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero h2 {
        font-size: 1.4rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .protection-benefits {
        grid-template-columns: 1fr;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Tablet responsive styles */
@media (max-width: 768px) and (min-width: 481px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .category-icon {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto 20px auto !important;
    }
    
    .category-icon-image {
        width: 200px !important;
        height: 200px !important;
    }
    
    .category-card {
        padding: 30px 25px !important;
    }
    
    .category-card h3 {
        font-size: 1.4rem !important;
    }
    
    .category-card p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .service-categories,
    .services-section {
        padding: 60px 0;
    }
    
    .category-card,
    .service-content,
    .premium-content,
    .protection-content {
        padding: 25px 20px;
    }
    
    .services-cta {
        padding: 80px 0;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Category icon responsive sizing */
    .category-icon {
        width: 150px !important;
        height: 150px !important;
        margin: 0 auto 15px auto !important;
    }
    
    .category-icon-image {
        width: 150px !important;
        height: 150px !important;
    }
    
    .category-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 10px !important;
    }
    
    .category-card p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }
    
    /* Touch-friendly button improvements */
    .btn {
        min-height: 44px !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }
    
    .btn-primary, .btn-secondary {
        min-height: 44px !important;
        touch-action: manipulation !important;
    }
    
    /* Improved touch targets for mobile */
    .category-card {
        min-height: 300px !important;
        touch-action: manipulation !important;
    }
    
    /* Mobile CTA spacing */
    .cta-buttons {
        gap: 20px !important;
    }
    
    .cta-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,400 1000,1000 0,600"/><polygon fill="%23ffffff05" points="0,200 1000,0 1000,600 0,800"/></svg>');
    background-size: cover;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff20"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff15"/><circle cx="40" cy="80" r="0.8" fill="%23ffffff25"/><circle cx="60" cy="30" r="1.2" fill="%23ffffff18"/><circle cx="90" cy="70" r="0.6" fill="%23ffffff22"/></svg>');
    animation: particleFloat 20s linear infinite;
    z-index: 2;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.about-hero .container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 6;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    position: relative;
    z-index: 7;
    text-align: center;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    color: #ffffff;
    position: relative;
    z-index: 8;
}

.hero-text h2 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #f39c12;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 8;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 8;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #66c137;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 9;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 9;
}

/* Hero Car Showcase */
.car-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.main-car {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #66c137, #4a9c29);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
    animation: carFloat 4s ease-in-out infinite;
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px) rotateY(2deg); }
}

.main-car .car-icon {
    font-size: 8rem;
    color: white;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

.shine-effect {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 10px;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { opacity: 0; transform: translateX(-100px); }
    50% { opacity: 1; transform: translateX(100px); }
}

.detail-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.detail-bubble {
    position: absolute;
    background: white;
    color: #2c3e50;
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.detail-bubble:nth-child(1) {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.detail-bubble:nth-child(2) {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.detail-bubble:nth-child(3) {
    bottom: 20px;
    left: 20px;
    animation-delay: 2s;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.story-quote {
    background: linear-gradient(135deg, #66c137, #4a9c29);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    border-left: none;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.story-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-quote cite {
    font-size: 1rem;
    opacity: 0.9;
    font-style: normal;
    font-weight: 600;
}

/* Story Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
}

.gallery-item.large {
    grid-row: 1 / 3;
}

.car-detail-image {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #66c137, #4a9c29);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.car-detail-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.car-detail-image:hover .gallery-image {
    transform: scale(1.05);
}

.car-detail-image.wash {
    background: linear-gradient(135deg, #66c137, #2ecc71);
}

.car-detail-image.polish {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.car-detail-image.interior {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.car-detail-image.protection {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.detail-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

.gallery-item.large .detail-icon {
    font-size: 6rem;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.car-detail-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Values Section */
.our-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #66c137;
}

.value-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #66c137, #4a9c29);
    border-radius: 50%;
    opacity: 0.1;
}

.value-icon .icon {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Process Excellence Section */
.process-excellence {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.excellence-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.excellence-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-icon {
    font-size: 2rem;
    color: #66c137;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.item-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.item-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Process Showcase */
.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.showcase-item.main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.showcase-car {
    position: relative;
    text-align: center;
}

.car-silhouette {
    font-size: 8rem;
    color: #66c137;
    margin-bottom: 30px;
    display: block;
}

.detail-points {
    position: relative;
}

.point {
    position: absolute;
    background: white;
    border: 3px solid #66c137;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
    animation: pointPulse 2s ease-in-out infinite;
}

.point-1 { top: -120px; left: 20%; animation-delay: 0s; }
.point-2 { top: -80px; right: 10%; animation-delay: 0.5s; }
.point-3 { bottom: -80px; right: 20%; animation-delay: 1s; }
.point-4 { bottom: -120px; left: 10%; animation-delay: 1.5s; }

@keyframes pointPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.point-number {
    font-size: 1.2rem;
    color: #66c137;
    font-weight: 900;
}

.point-label {
    font-size: 0.7rem;
    color: #6c757d;
}

.showcase-tools {
    display: flex;
    justify-content: space-around;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.tool-icon {
    font-size: 2rem;
    color: #66c137;
}

/* Service Areas Section */
.service-areas {
    padding: 100px 0;
    background: white;
}

.areas-content {
    margin-top: 60px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #66c137;
}

/* Service Promise */
.service-promise {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.promise-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.promise-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.promise-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.promise-icon {
    font-size: 2rem;
    color: #f39c12;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: transparent !important;
    color: white;
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-cta .cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f39c12;
}

.guarantee-icon {
    font-size: 1.5rem;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-narrative p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .story-quote {
        padding: 30px 25px;
        margin: 30px 0;
        border-radius: 15px;
    }
    
    .story-quote p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .gallery-item.large {
        grid-row: auto;
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    }
    
    .main-car .car-icon {
        font-size: 6rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .protection-benefits {
        grid-template-columns: 1fr;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .our-story,
    .our-values,
    .process-excellence,
    .service-areas {
        padding: 50px 0;
    }
    
    .story-narrative p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 18px;
        padding: 0 5px;
    }
    
    .story-quote {
        padding: 25px 20px;
        margin: 25px 0;
        border-radius: 12px;
    }
    
    .story-quote p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .value-card,
    .area-card {
        padding: 25px 20px;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .value-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-cta {
        padding: 60px 0;
    }
    
    .about-cta .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .about-cta .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item.large {
        grid-column: auto;
    }
    
    .gallery-item {
        min-height: 150px;
    }
    
    .excellence-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .showcase-tools {
        flex-direction: column;
        gap: 20px;
    }
    
    .detail-bubble {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .bubble-text {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #66c137;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #66c137;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-section .container {
        gap: 40px;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "content"
            "features" 
            "bottom";
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 18px;
    }
    
    .hero-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin: 0 auto 28px auto;
        max-width: none;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-bottom {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .hero-bottom h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .hero-bottom .hero-buttons {
        gap: 12px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .hero-image .car-showcase {
        padding: 20px;
        margin-top: 20px;
    }
    
    .hero-features li {
        font-size: 15px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-section .container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 auto 24px auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btn {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-image .car-showcase {
        padding: 15px;
    }
    
    .hero-features li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .hero-image .feature-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-preview {
        padding: 40px 0;
    }
    
    .services-preview h2 {
        font-size: 28px;
    }
    
    /* About Section Responsive */
    .about-section {
        min-height: 60vh;
        padding: 80px 0;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 900px;
    }
    
    .service-card {
        padding: 20px;
        min-height: 280px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-features p {
        font-size: 13px;
    }
    
    .service-price {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }


/* Additional Mobile Styles for Services */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 18px;
        min-height: 260px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-features p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .service-price {
        font-size: 15px;
    }
    
    .service-card .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Body padding to account for fixed header */
body {
    padding-top: 110px;
    transition: padding-top 0.3s ease;
}

@media (max-width: 1024px) {
    body {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 55px;
    }
}

@media (max-width: 320px) {
    body {
        padding-top: 50px;
    }
}

/* ===============================================
   CONTACT PAGE STYLES
   =============================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(10px) translateY(10px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #66c137, #4a9c29);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #4a9c29, #236617);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #66c137, #4a9c29);
}

.contact-info-card.highlight::before {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #66c137, #4a9c29);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-info-card.highlight .contact-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #66c137;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #4a9c29;
}

.contact-address {
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-hours {
    background: #f8f9fa;
    margin: 0 auto;
}

/* Ensure contact info cards don't get too wide */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Limit the hero content width */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Limit section header width */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.benefit-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

.testimonial-preview {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #66c137;
}

.testimonial-preview blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-preview cite {
    font-weight: 600;
    color: #66c137;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66c137;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid {
    border-color: #27ae60;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    color: #2c3e50;
    margin: 10px 0 -10px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #66c137;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #66c137;
}

.btn-submit {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

.form-success,
.form-error {
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-success i,
.form-error i {
    font-size: 1.5rem;
}

.form-error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    background: white;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.area-item {
    background: linear-gradient(45deg, #66c137, #4a9c29);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Smooth Scrolling */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Icons (Using CSS icons for better performance) */
.icon-phone::before { content: "📞"; }
.icon-mail::before { content: "✉️"; }
.icon-location::before { content: "📍"; }
.icon-car::before { content: "🚗"; }
.icon-check::before { content: "✅"; }
.icon-check-circle::before { content: "✅"; }
.icon-alert-circle::before { content: "⚠️"; }

/* Contact Page Layout Constraints */
.contact-page {
    overflow-x: hidden;
    width: 100%;
}

.contact-page .container {
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .service-areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-section,
    .contact-form-section,
    .contact-faq-section,
    .service-areas-section {
        padding: 50px 0;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===============================================
   FORM VALIDATION & ANIMATION STYLES
   =============================================== */

/* Form validation states */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-group.focused {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.form-error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Character counter */
.char-counter {
    font-size: 0.8rem;
    color: #666;
    text-align: right;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.char-counter.warning {
    color: #e67e22;
    font-weight: 600;
}

/* Animation classes */
.contact-info-card,
.faq-item,
.area-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-info-card.animated,
.faq-item.animated,
.area-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.contact-info-card:nth-child(1).animated { transition-delay: 0.1s; }
.contact-info-card:nth-child(2).animated { transition-delay: 0.2s; }
.contact-info-card:nth-child(3).animated { transition-delay: 0.3s; }
.contact-info-card:nth-child(4).animated { transition-delay: 0.4s; }

.faq-item:nth-child(1).animated { transition-delay: 0.1s; }
.faq-item:nth-child(2).animated { transition-delay: 0.2s; }
.faq-item:nth-child(3).animated { transition-delay: 0.3s; }
.faq-item:nth-child(4).animated { transition-delay: 0.4s; }

/* Toast notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    background: #27ae60;
}

.toast-error {
    background: #e74c3c;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

/* Loading spinner for form */
.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover effects for interactive elements */
.contact-link {
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-link:hover::before {
    left: 100%;
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

/* Form focus animations */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Success/Error message animations */
.form-success,
.form-error {
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact page specific animations */
.contact-hero .hero-content {
    animation: fadeInUp 1s ease;
}

.contact-hero .hero-buttons .btn {
    animation: fadeInUp 1s ease;
}

/* Custom service card backgrounds */
.interior-detailing-bg {
    background-image: linear-gradient(rgba(102, 193, 55, 0.9), rgba(102, 193, 55, 0.7)), url('../../../uploads/2025/09/Express-Interior-Clean.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    color: white !important;
}

/* Force remove all service card background images */
.services-grid .service-card,
.service-card,
div.service-card {
    background-image: none !important;
    background: var(--primary-color) !important;
    color: white !important;
}

.services-grid .service-card[style*="background-image"],
.service-card[style*="background-image"],
div.service-card[style*="background-image"] {
    background-image: none !important;
    background: var(--primary-color) !important;
}

/* Remove any pseudo-element images */
.service-card::before,
.service-card::after,
.services-grid .service-card::before,
.services-grid .service-card::after {
    display: none !important;
    content: none !important;
    background-image: none !important;
}

/* Service top images styling */
.service-top-image {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto 16px !important;
    display: block !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
    height: auto !important;
}

.contact-hero .hero-buttons .btn:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .toast {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    /* Ensure all text is readable on mobile */
    body {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Improved tap targets */
    a, button, .btn, .category-card {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    /* Mobile-optimized spacing */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Additional mobile viewport optimizations */
@media (max-width: 480px) {
    /* Ensure content fits on small screens */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }
    
    /* Font size adjustments for readability */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.1rem !important; }
    
    /* Full-width buttons on very small screens */
    .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 10px auto !important;
        display: block !important;
    }
}

/* Service card images uniformity */
.service-top-image {
    width: 100% !important;
    max-width: 400px !important;
    height: 200px !important;
    object-fit: cover !important;
    margin: 0 auto 16px !important;
    display: block !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
}

/* Mobile responsive for service images */
@media (max-width: 768px) {
    .service-top-image {
        height: 180px !important;
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .service-top-image {
        height: 160px !important;
        max-width: 100% !important;
        margin-bottom: 12px !important;
    }
}
