/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.preloader-spinner {
    font-size: 60px;
    color: white;
}

.preloader-spinner i {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --text-color: #334155;
    --heading-color: #0f172a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    text-decoration: none;
    display: block;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 5px;
    color: white;
}

.logo .tagline {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.nav a:hover {
    color: #60a5fa;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header-contacts .phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.header-contacts .phone:hover {
    color: #60a5fa;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 16px;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: var(--heading-color);
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-text .highlight {
    color: var(--success-color);
    font-size: 18px;
    padding: 15px;
    background-color: #f0fdf4;
    border-left: 4px solid var(--success-color);
    border-radius: 4px;
}

.about-image, .repair-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Repair Sections */
.repair-section {
    padding: 80px 0;
}

.repair-section.alt {
    background-color: var(--light-color);
}

.repair-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.repair-text h2 {
    color: var(--heading-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.repair-text h3 {
    color: var(--heading-color);
    font-size: 22px;
    margin: 25px 0 15px;
}

.repair-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.repair-text ul {
    list-style: none;
    margin: 20px 0;
}

.repair-text ul li {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f1f5f9;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    line-height: 1.7;
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.brands h3 {
    color: var(--heading-color);
    font-size: 28px;
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-card {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--heading-color);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.brand-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: var(--light-color);
}

.blog h2 {
    color: var(--heading-color);
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 18px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.blog-card h3 {
    padding: 20px 20px 10px;
    color: var(--heading-color);
    font-size: 20px;
}

.blog-card p {
    padding: 0 20px 15px;
    color: var(--gray-color);
}

.blog-link {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-link:hover {
    color: var(--secondary-color);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.products h2 {
    color: var(--heading-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.products p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
}

.products-image .image-placeholder {
    max-width: 600px;
    margin: 0 auto;
    height: 300px;
}

.products-image .section-image {
    max-width: 800px;
    margin: 0 auto;
    height: 350px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    color: var(--heading-color);
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.pricing-section h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-category {
    background: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.pricing-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-category h3 {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.pricing-category h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    min-height: 40px;
}

.service-name {
    color: var(--text-color);
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 60%;
}

.price-dots {
    flex: 0 1 auto;
    border-bottom: 2px dotted var(--border-color);
    margin: 0 5px;
    min-width: 20px;
    align-self: flex-end;
    margin-bottom: 5px;
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right;
    min-width: 110px;
}

.pricing-note {
    background: #fef3c7;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin: 40px 0;
}

.pricing-note p {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.7;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note i {
    color: #f59e0b;
    margin-right: 8px;
}

.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.pricing-cta h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.pricing-cta p {
    color: white;
    opacity: 0.95;
    margin-bottom: 25px;
    font-size: 18px;
}

.pricing-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 18px;
}

.pricing-cta .btn-primary:hover {
    background: var(--light-color);
}

/* Repair Form Section */
.repair-form-section {
    padding: 80px 0;
    background: white;
}

.repair-form-section h2 {
    color: var(--heading-color);
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.repair-form-section h2 i {
    color: var(--primary-color);
}

.repair-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-group span {
    color: var(--text-color);
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
}

.btn-submit i {
    margin-right: 8px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--heading-color);
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: var(--heading-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item p {
    line-height: 1.8;
    color: var(--text-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.messenger-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 6px;
    margin-top: 5px;
    text-decoration: none !important;
}

.messenger-link:hover {
    background-color: var(--secondary-color);
    text-decoration: none !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-map {
    display: flex;
    align-items: stretch;
}

.contact-map iframe {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
}

.map-placeholder p:first-child {
    font-size: 80px;
    margin-bottom: 20px;
}

.map-placeholder p:nth-child(2) {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #60a5fa;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav ul {
        justify-content: center;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-content,
    .repair-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-placeholder,
    .section-image {
        height: 300px;
    }

    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .repair-form {
        padding: 30px 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-text h2,
    .repair-text h2,
    .blog h2,
    .products h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .features,
    .about,
    .repair-section,
    .blog,
    .products,
    .contact {
        padding: 50px 0;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-map iframe {
        height: 300px;
    }

    .pricing-categories {
        grid-template-columns: 1fr;
    }

    .pricing-cta {
        padding: 30px 20px;
    }

    .pricing-cta h3 {
        font-size: 22px;
    }

    .price-item {
        flex-wrap: wrap;
    }

    .service-name {
        max-width: 100%;
        flex: 1 1 100%;
        margin-bottom: 5px;
    }

    .price-dots {
        display: none;
    }

    .service-price {
        flex: 1 1 100%;
        text-align: left;
        min-width: auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.blog-card,
.brand-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
a, button, .btn {
    transition: all 0.3s ease;
}

/* Blog Article Styles */
.blog-article {
    padding: 80px 0;
    background: white;
}

.article-header {
    margin-bottom: 40px;
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-link:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.back-link i {
    margin-right: 8px;
}

.blog-article h1 {
    color: var(--heading-color);
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 30px;
    color: var(--gray-color);
    font-size: 15px;
}

.article-meta i {
    margin-right: 8px;
}

.article-image {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-content h2 {
    color: var(--heading-color);
    font-size: 32px;
    margin: 40px 0 20px;
}

.article-content h3 {
    color: var(--heading-color);
    font-size: 24px;
    margin: 30px 0 15px;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 17px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-color);
}

.article-content ul ul {
    margin: 10px 0;
}

.service-list, .repair-stats, .advantages, .quality-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service-item, .stat-item, .advantage-item, .quality-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.service-item:hover, .stat-item:hover, .advantage-item:hover, .quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item i, .stat-item i, .advantage-item i, .quality-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3, .stat-item h3, .advantage-item h3, .quality-item h3 {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.service-item p, .stat-item p, .advantage-item p, .quality-item p {
    font-size: 15px;
    margin: 0;
}

.call-to-action {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.call-to-action h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.call-to-action p {
    color: white;
    opacity: 0.95;
    margin-bottom: 25px;
}

.call-to-action .btn {
    margin: 10px;
}

.call-to-action .btn-primary {
    background: white;
    color: var(--primary-color);
}

.call-to-action .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.parts-category {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.price-card {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.price-card h3 {
    color: var(--heading-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.price-card p {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.price-card small {
    display: block;
    margin-top: 10px;
    color: var(--gray-color);
}

.tips {
    background: #fef3c7;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin: 30px 0;
}

.tips h3 {
    color: #92400e;
    margin-bottom: 15px;
}

.tips i {
    color: #f59e0b;
}

.info-box {
    display: flex;
    gap: 20px;
    background: #dbeafe;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.info-box i {
    font-size: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-box h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
}

.info-box p {
    margin: 0;
}

.popular-parts {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.popular-parts h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
}

/* Responsive for blog articles */
@media (max-width: 640px) {
    .blog-article h1 {
        font-size: 28px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .call-to-action {
        padding: 30px 20px;
    }

    .call-to-action h3 {
        font-size: 22px;
    }
}

/* Selection styling */
::selection {
    background-color: var(--primary-color);
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text i {
    margin-right: 10px;
    color: #fbbf24;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--success-color);
    color: white;
}

.cookie-accept:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .cookie-text {
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}
