/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Colors */
:root {
    --primary: #8B4513;
    --accent: #DAA520;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.brand-logo {
    width: 180px;
    height: 55px;
    object-fit: contain;
    border-radius: 4px;
}

.nav-brand i {
    font-size: 2rem;
}

.brand-text {
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1.2rem;
    font-weight: 900;
}

.brand-text small {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--gray-800);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    border-radius: 4px;
}

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

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
    word-wrap: break-word;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e5e7eb;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
}

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

/* Trust Section */
.trust-section {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0;
    border-bottom: 4px solid var(--accent);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent);
}

.trust-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: #d1d5db;
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: var(--accent);
    margin: 0 auto 2rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.category-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
    background: var(--gray-900);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(139, 69, 19, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.category-card:hover .category-title {
    color: var(--accent);
}

.category-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.category-link {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s;
}

.category-card:hover .category-link {
    transform: translateX(8px);
}

.section-footer {
    text-align: center;
}

/* SEO Content Section */
.seo-content-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.seo-content-item {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.seo-content-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.seo-content-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seo-content-item strong {
    color: var(--primary);
    font-weight: 700;
}

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

.parts-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.parts-list li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
    overflow: hidden;
}

.brands-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.brands-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-track {
    display: flex;
    gap: 6rem;
    animation: scroll 8s linear infinite;
    white-space: nowrap;
    align-items: center;
    width: calc(200% + 6rem);
}

.brands-track span {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-400);
    opacity: 0.5;
    transition: all 0.5s;
}

.brand-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    filter: none;
    transition: all 0.5s;
}

.brands-track:hover span,
.brands-track:hover .brand-image {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    z-index: 0;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Page Header */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Products Page */
.products-content {
    padding: 3rem 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.products-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--primary);
}

.sidebar-header i {
    font-size: 1.2rem;
}

.sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.promo-box {
    margin-top: 2rem;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
}

.promo-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.promo-box p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

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

.products-count {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.products-count span {
    font-weight: 700;
    color: var(--primary);
}

.clear-filter {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.clear-filter:hover {
    text-decoration: underline;
}

.products-loading {
    display: flex;
    justify-content: center;
    padding: 5rem 0;
}

.products-loading i {
    font-size: 2.5rem;
    color: var(--primary);
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.product-image {
    aspect-ratio: 4/3;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-brand {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-models {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.model-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-description {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.product-btn {
    width: 100%;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.product-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.no-products {
    text-align: center;
    padding: 5rem 0;
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
}

.no-products i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.no-products h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.no-products p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-info > div:first-child p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: rgba(218, 165, 32, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.contact-note {
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
    margin-top: 0.25rem !important;
}

.contact-address {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

.contact-map {
    width: 100%;
    height: 16rem;
    background: var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.contact-map iframe {
    transition: filter 0.5s;
}

.contact-map:hover iframe {
    filter: brightness(1.1);
}

.connect-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.connect-content {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.connect-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.connect-content > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.connect-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid;
}

.whatsapp-btn {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: inherit;
}

.whatsapp-btn:hover {
    background: #dcfce7;
    border-color: #86efac;
}

.email-btn {
    background: #fef3f2;
    border-color: #fecaca;
    color: inherit;
}

.email-btn:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

.linkedin-btn {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: inherit;
}

.linkedin-btn:hover {
    background: #dbeafe;
    border-color: #93c5fd;
}

.connect-icon {
    padding: 1rem;
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.connect-btn:hover .connect-icon {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: #22c55e;
}

.email-icon {
    background: #ef4444;
}

.linkedin-icon {
    background: #2563eb;
}

.connect-icon i {
    font-size: 2rem;
}

.connect-btn h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.connect-btn p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.connect-contact {
    color: #22c55e;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}

.email-btn .connect-contact {
    color: #ef4444;
}

.linkedin-btn .connect-contact {
    color: #2563eb;
}

.why-choose-us {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.why-choose-us h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-choose-us li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* About Page */
.about-content {
    padding: 5rem 0;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text .accent {
    color: var(--accent);
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-description p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mission-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
}

.mission-item h4 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mission-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    position: relative;
}

.image-decorations {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.decoration-1 {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background: rgba(218, 165, 32, 0.2);
    border-radius: 50%;
}

.decoration-2 {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 8rem;
    height: 8rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
}

.about-image img {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 4px;
    border-top: 4px solid var(--primary);
    z-index: 20;
    max-width: 12rem;
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin: 0;
}

.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d1d5db;
    margin: 0;
}

/* Brand Modal */
.brand-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-models h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.models-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.model-tag-large {
    background: var(--accent);
    color: var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
}

.model-tag-large:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.series-title {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-700);
    margin: 1.5rem 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.series-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid var(--gray-200);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.brand-card {
    cursor: pointer;
    transition: all 0.3s;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.view-models-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 4px;
}

.view-models-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .brand-modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .models-grid {
        gap: 0.5rem;
    }
    
    .model-tag-large {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .nav-brand {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-contact h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent);
    width: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link,
    .nav-cta {
        font-size: 0.8rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 0 40px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .experience-badge {
        position: static;
        margin-top: 1rem;
        left: auto;
        bottom: auto;
        max-width: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 90px 0 30px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 12vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }
    
    .hero-buttons .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .connect-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .connect-icon {
        align-self: center;
    }
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .nav-brand {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-contact h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent);
    width: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Products SEO Content */
.products-seo-content {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.products-seo-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

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

.seo-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.seo-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.seo-block p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.seo-block strong {
    color: var(--primary);
    font-weight: 700;
}

.parts-specifications {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.parts-specifications h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

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

.spec-category {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 6px;
    border-top: 3px solid var(--accent);
}

.spec-category h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-category li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.spec-category li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.page-description {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 800px;
}

/* Sidebar SEO Content */
.sidebar-seo-content {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
}

.sidebar-seo-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-models {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-group h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.model-tags {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.4;
    display: block;
}

/* Responsive Design for SEO Content */
@media (max-width: 768px) {
    .seo-content-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-seo-content {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
    
    .seo-block {
        padding: 1.5rem;
    }
    
    .parts-specifications {
        padding: 1.5rem;
    }
}
/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}