/* Base styles - identical to React version */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: hsl(210, 24%, 16%);
    background: hsl(0, 0%, 100%);
}

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

/* CSS Variables matching React design system */
:root {
    --automotive-blue: hsl(220, 39%, 11%);
    --automotive-blue-light: hsl(220, 30%, 25%);
    --automotive-silver: hsl(210, 14%, 89%);
    --automotive-silver-dark: hsl(210, 14%, 73%);
    --automotive-accent: hsl(207, 89%, 86%);
    --automotive-accent-hover: hsl(207, 89%, 76%);
    --muted-foreground: hsl(210, 14%, 46%);
    --foreground: hsl(210, 24%, 16%);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 32px;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--automotive-blue);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--automotive-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--foreground);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('hero-automotive.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(220, 39%, 11%, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.accent-text {
    color: var(--automotive-accent);
    display: block;
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 48px;
}

.btn-primary {
    background: var(--automotive-accent);
    color: var(--automotive-blue);
    border-color: var(--automotive-accent);
}

.btn-primary:hover {
    background: var(--automotive-accent-hover);
    border-color: var(--automotive-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px hsla(220, 39%, 11%, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--automotive-blue);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: hsla(210, 14%, 89%, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--automotive-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px hsla(220, 39%, 11%, 0.3);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--automotive-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

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

.content-text h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--automotive-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-text p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--automotive-accent);
    font-weight: bold;
    font-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.benefit span:last-child {
    color: var(--foreground);
}

.content-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px -10px hsla(220, 39%, 11%, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--automotive-blue);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* Magazine Styles */
.magazine-section {
    padding: 2rem 0 5rem;
}

.magazine-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.magazine-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--automotive-blue);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--automotive-silver);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.search-form button {
    padding: 0.75rem 1rem;
    background: var(--automotive-blue);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover,
.category-list a.active {
    color: var(--automotive-blue);
}

.recent-articles {
    list-style: none;
}

.recent-articles li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--automotive-silver);
}

.recent-articles li:last-child {
    border-bottom: none;
}

.recent-articles a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
}

.recent-articles a:hover {
    color: var(--automotive-blue);
}

.article-date {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.article-category {
    background: var(--automotive-accent);
    color: var(--automotive-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 500;
}

.article-title {
    margin-bottom: 1rem;
}

.article-title a {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.article-title a:hover {
    color: var(--automotive-blue);
}

.article-excerpt {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.article-author {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.read-more {
    color: var(--automotive-blue);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    text-decoration: underline;
}

.no-articles {
    text-align: center;
    padding: 3rem 0;
}

.no-articles h3 {
    color: var(--automotive-blue);
    margin-bottom: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-link,
.pagination-current {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
}

.pagination-link {
    color: var(--automotive-blue);
    background: white;
    border: 1px solid var(--automotive-silver);
}

.pagination-link:hover {
    background: var(--automotive-accent);
}

.pagination-current {
    background: var(--automotive-blue);
    color: white;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--automotive-silver);
    padding: 2rem 0;
    margin-top: 70px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--automotive-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .current {
    color: var(--muted-foreground);
}

/* Article Page */
.article-page {
    padding: 2rem 0 5rem;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.article-header {
    margin-bottom: 2rem;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--automotive-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-tags {
    margin-top: 1rem;
}

.tag {
    display: inline-block;
    background: var(--automotive-accent);
    color: var(--automotive-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px hsla(220, 39%, 11%, 0.3);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.article-content h2 {
    color: var(--automotive-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.article-content h3 {
    color: var(--automotive-blue);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-share {
    background: var(--automotive-silver);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.article-share h4 {
    color: var(--automotive-blue);
    margin-bottom: 1rem;
}

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

.share-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.email {
    background: #34495e;
}

.comments-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--automotive-silver);
}

.comments-section h3 {
    color: var(--automotive-blue);
    margin-bottom: 2rem;
}

.comment-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    margin-bottom: 2rem;
}

.comment-form h4 {
    color: var(--automotive-blue);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--automotive-silver);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--automotive-blue);
}

.comments-list {
    space-y: 1rem;
}

.comment {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px -2px hsla(220, 39%, 11%, 0.1);
    margin-bottom: 1rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author {
    color: var(--automotive-blue);
    font-weight: 600;
}

.comment-date {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.comment-content {
    line-height: 1.6;
    color: var(--foreground);
}

.no-comments {
    text-align: center;
    color: var(--muted-foreground);
    font-style: italic;
    padding: 2rem 0;
}

.article-sidebar .sidebar-widget {
    position: sticky;
    top: 120px;
}

.related-articles,
.popular-articles {
    space-y: 1rem;
}

.related-article,
.popular-article {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--automotive-silver);
}

.related-article:last-child,
.popular-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.related-article h4,
.popular-article h4 {
    margin-bottom: 0.5rem;
}

.related-article h4 a,
.popular-article h4 a {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

.related-article h4 a:hover,
.popular-article h4 a:hover {
    color: var(--automotive-blue);
}

.related-date,
.popular-views {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design pro magazín */
@media (max-width: 1024px) {
    .magazine-layout,
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .magazine-sidebar,
    .article-sidebar {
        order: -1;
    }
    
    .sidebar-widget {
        position: static;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Footer */
.footer {
    background: var(--automotive-blue);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--automotive-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section ul li a:hover {
    color: var(--automotive-accent);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: hsla(0, 0%, 100%, 0.7);
}

/* Page Header for subpages */
.page-header {
    background: linear-gradient(135deg, var(--automotive-blue), var(--automotive-blue-light));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: hsla(210, 14%, 89%, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--automotive-blue);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--automotive-blue);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--automotive-blue);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.story-text p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: hsla(210, 14%, 89%, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--automotive-blue);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card strong {
    color: var(--automotive-blue);
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: hsla(210, 14%, 89%, 0.3);
}

.team-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-stat {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
}

.team-stat h3 {
    font-size: 1.25rem;
    color: var(--automotive-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-stat p {
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Detailed Services */
.main-services {
    padding: 5rem 0;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-detailed-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
}

.service-icon-large {
    font-size: 4rem;
    color: var(--automotive-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.service-detailed-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--foreground);
}

.service-detailed-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.service-features ul {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.service-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-weight: 500;
    color: var(--muted-foreground);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--automotive-blue);
    text-align: center;
    margin: 1rem 0;
}

/* Additional Services */
.additional-services {
    background: hsla(210, 14%, 89%, 0.3);
    padding: 5rem 0;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-service-card:hover {
    transform: translateY(-3px);
}

.additional-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.additional-service-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Process Steps */
.process-section {
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--automotive-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.process-step p {
    color: var(--muted-foreground);
}

/* Pricing */
.pricing-packages {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--automotive-accent);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--automotive-accent);
    color: var(--automotive-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.package-description {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--automotive-blue);
    text-align: center;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.5rem;
    color: var(--muted-foreground);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

/* Additional Pricing */
.additional-pricing {
    padding: 5rem 0;
    background: hsla(210, 14%, 89%, 0.3);
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-table-grid {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid hsl(214, 31%, 91%);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span:first-child {
    color: var(--foreground);
    font-weight: 500;
}

.price-highlight {
    color: var(--automotive-blue);
    font-weight: 700;
    font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--automotive-blue);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Page Styles */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--automotive-blue), var(--automotive-blue-light));
    color: white;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 0;
}

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

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--automotive-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--automotive-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--automotive-silver);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--automotive-accent);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--automotive-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--automotive-blue);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--automotive-blue);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--automotive-accent);
}

.contact-card span {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.quick-contact {
    padding: 4rem 0;
    background: var(--automotive-silver);
}

.quick-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-option {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.quick-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-option h3 {
    font-size: 1.5rem;
    color: var(--automotive-blue);
    margin-bottom: 0.5rem;
}

.quick-option p {
    color: var(--muted-foreground);
}

.contact-faq {
    padding: 5rem 0;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: var(--automotive-blue);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-options {
        grid-template-columns: 1fr;
    }
}
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--automotive-blue);
}

.contact-item strong {
    color: var(--foreground);
    font-weight: 600;
}

.contact-item span {
    color: var(--muted-foreground);
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(220, 39%, 11%, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid hsl(214, 31%, 91%);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--automotive-blue);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* 404 Error Page */
.error-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-title {
    font-size: 8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    opacity: 0.8;
}

.error-subtitle {
    font-size: 2.5rem;
    margin: 20px 0;
    font-weight: 600;
}

.error-description {
    font-size: 1.2rem;
    margin: 30px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.error-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        padding: 1rem 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .content-grid,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}