/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a961;
    --accent-color: #8b1538;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 80px;
    width: auto;
    max-width: 250px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-image-left {
    flex: 1.2;
    max-width: 55%;
    order: 2;
    position: relative;
}

.hero-image-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.hero-image-left img:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.hero-text {
    flex: 1;
    max-width: 45%;
    order: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2400px;
    height: 960px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Position the first 3 services on the first row */
.service-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.service-card:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.service-card:nth-child(3) { grid-column: 5 / 7; grid-row: 1; }

/* Center the last 2 services closer together on the second row */
.service-card:nth-child(4) { 
    grid-column: 2 / 4; 
    grid-row: 2; 
}
.service-card:nth-child(5) { 
    grid-column: 4 / 6; 
    grid-row: 2; 
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2400px;
    height: 960px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-centered .about-text {
    width: 100%;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expertise {
    margin: 2rem 0;
}

.expertise h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand-item i {
    color: var(--secondary-color);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 500;
    color: var(--text-primary);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-text,
    .hero-image-left {
        max-width: 100%;
    }

    .service-image {
        height: 150px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* Reset custom grid placement for cards on smaller screens */
    .services-grid .service-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media screen and (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero {
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .services::before,
    .about::before {
        display: none;
    }

    .hero-image-left {
        order: 2;
        max-width: 100%;
    }

    .hero-text {
        order: 1;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure cards flow naturally on mobile */
    .services-grid .service-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .service-image {
        height: 140px;
    }

    .stats {
        justify-content: center;
    }

    .expertise-brands {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 15px 40px;
    }

    h1 { font-size: 2rem; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .service-image {
        height: 120px;
    }

    .btn {
        width: 100%;
    }

    .logo {
        height: 45px;
        max-width: 150px;
    }

    .hero-visual {
        height: 280px;
    }

    .classic-car-silhouette {
        transform: scale(0.6);
    }

    .mechanic-workspace {
        height: 280px;
        padding: 1rem;
    }

    .workshop-tools {
        gap: 1rem;
    }

    .tool-rack {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .experience-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .gallery-visual {
        min-height: 200px;
    }

    .service-van {
        width: 70px;
        height: 40px;
    }

    .hero-image,
    .about-image {
        margin-top: 1rem;
    }
}

/* Enhanced Visual Styling - Inspired by Professional Automotive Design */
:root {
    --luxury-gold: #D4AF37;
    --classic-red: #8B0000;
    --charcoal: #1a1a1a;
    --silver: #C0C0C0;
    --vintage-cream: #F5F5DC;
}

/* Logo Enhancement */
.nav-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.logo:hover {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transform: scale(1.05);
}

/* Hero Visual - Classic Car Silhouette */
.hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.classic-car-silhouette {
    position: relative;
    width: 280px;
    height: 120px;
    transform: scale(0.8);
}

.car-main-body {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 240px;
    height: 60px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary-color) 100%);
    border-radius: 30px 30px 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.car-windshield {
    position: absolute;
    bottom: 50px;
    left: 80px;
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, var(--silver) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 20px 20px 0 0;
    opacity: 0.8;
}

.wheel {
    position: absolute;
    bottom: 10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--charcoal) 40%, var(--silver) 70%, var(--charcoal) 100%);
    border-radius: 50%;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
}

.wheel-front { right: 40px; }
.wheel-rear { left: 40px; }

.car-details {
    position: absolute;
    bottom: 40px;
    left: 50px;
    width: 8px;
    height: 15px;
    background: var(--luxury-gold);
    border-radius: 2px;
    box-shadow: 
        20px 0 var(--luxury-gold),
        160px 0 var(--classic-red),
        180px 0 var(--classic-red);
}

.hero-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

/* About Section - Mechanic Workspace */
.mechanic-workspace {
    position: relative;
    width: 100%;
    height: 350px;
    background: linear-gradient(145deg, #f1f3f4 0%, #e8eaed  100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.workshop-tools {
    display: flex;
    gap: 2rem;
    height: 100%;
}

.tool-rack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}

.tool {
    width: 40px;
    height: 8px;
    border-radius: 4px;
}

.wrench-tool {
    background: var(--silver);
    transform: rotate(15deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.socket-tool {
    background: var(--charcoal);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.hammer-tool {
    background: linear-gradient(45deg, #8B4513 0%, #D2691E  100%);
    width: 35px;
    height: 12px;
    transform: rotate(-10deg);
}

.work-surface {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    border: 2px solid #dee2e6;
}

.engine-part {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #495057 100%);
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.engine-part::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: var(--luxury-gold);
    border-radius: 50%;
    opacity: 0.7;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--luxury-gold) 100%);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Gallery Visuals */
.gallery-visual {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.restoration-scene {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.vintage-car .car-body {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 50px;
    background: linear-gradient(135deg, var(--classic-red) 0%, #DC143C 100%);
    border-radius: 25px 25px 5px 5px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.restoration-progress {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
}

.restoration-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--luxury-gold) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

.maintenance-scene {
    background: linear-gradient(135deg, #16537e 0%, #2980b9 100%);
}

.service-bay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lift-system {
    width: 60px;
    height: 100px;
    background: linear-gradient(135deg, var(--silver) 0%, #95a5a6 100%);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lift-system::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    width: 120px;
    height: 30px;
    background: var(--charcoal);
    border-radius: 15px;
}

.collection-scene {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.garage-collection {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 2rem 1rem;
}

.classic-lineup {
    display: flex;
    gap: 10px;
}

.classic-lineup::before,
.classic-lineup::after {
    content: '';
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--classic-red) 100%);
    border-radius: 10px 10px 3px 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.mobile-scene {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.mobile-workshop {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-van {
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.service-van::before {
    content: 'REVIVE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.portable-equipment {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 20px;
    background: var(--charcoal);
    border-radius: 3px;
    box-shadow: 
        -10px 0 var(--silver),
        -20px 0 var(--luxury-gold);
}

/* Hover Effects */
.hero-visual:hover .classic-car-silhouette {
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.gallery-visual:hover {
    transform: scale(1.02);
}

.mechanic-workspace:hover .tool {
    animation: toolBounce 0.6s ease-in-out;
}

/* Animations */
@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes toolBounce {
    0%, 100% { transform: translateY(0) rotate(var(--initial-rotation, 0deg)); }
    50% { transform: translateY(-5px) rotate(var(--initial-rotation, 0deg)); }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }