:root {
    --primary-color: #ff6b00;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd700;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #0a0a0a;
    --gradient-1: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    padding: 1rem 0;
}

.site-header.uk-sticky-fixed {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo-icon i {
    font-size: 1.8rem;
    color: #fff;
    z-index: 2;
    position: relative;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 12px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-logo:hover .logo-glow {
    opacity: 0.6;
}

.header-logo:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.main-nav li a i {
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.main-nav li a:hover {
    color: #fff;
    background: rgba(255, 107, 0, 0.1);
}

.main-nav li a:hover i {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-cta {
    background: var(--gradient-1);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    text-decoration: none;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.header-cta i {
    transition: transform 0.3s ease;
}

.header-cta:hover i {
    transform: translateX(3px);
}

.mobile-toggle {
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover span {
    background: var(--accent-color);
}

.mobile-menu {
    background: var(--dark-bg) !important;
    padding: 2rem !important;
}

.mobile-close {
    color: var(--primary-color) !important;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

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

.mobile-logo span {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

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

.mobile-nav li {
    margin: 0;
}

.mobile-nav li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.mobile-nav li a i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 30px;
}

.mobile-nav li a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.mobile-contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-family: 'Russo One', sans-serif;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn {
    background: var(--gradient-1) !important;
    color: #fff !important;
    border: none !important;
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.services-section {
    padding: 6rem 0;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.parts-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.parts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.parts-section .section-title {
    color: #fff;
}

.parts-section .section-title::after {
    background: var(--gradient-1);
}

.parts-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.parts-slider-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.parts-slider-items {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.parts-slide {
    width: 550px;
    flex-shrink: 0;
}

.part-card-slider {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 420px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.part-card-slider:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
}

.part-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.part-image-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.part-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.part-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem 2rem;
    z-index: 2;
}

.part-name h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.partners-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.partner-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.partner-card p {
    color: #666;
    font-size: 0.95rem;
}

.warranty-info {
    max-width: 800px;
    margin: 0 auto;
}

.warranty-card {
    background: var(--gradient-2);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.warranty-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.warranty-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.warranty-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.about-section {
    padding: 6rem 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.contact-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .section-title::after {
    background: var(--primary-color);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form .uk-input,
.contact-form .uk-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
}

.contact-form .uk-input::placeholder,
.contact-form .uk-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.contact-form .uk-button-primary {
    background: var(--gradient-1) !important;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-form .uk-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.site-footer {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-top {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 15px;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

.footer-logo-icon i {
    font-size: 2rem;
    color: #fff;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.footer-logo-main {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-logo-sub {
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section {
    padding-left: 2rem;
}

.footer-title {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a i {
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

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

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contacts i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    margin-top: 0.2rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-partners > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-partner-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.partner-badge {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.partner-badge:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .main-nav li a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .header-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .parts-slide {
        width: 450px;
    }
    
    .part-card-slider {
        height: 360px;
    }
    
    .part-name h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 960px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-image {
        height: 400px;
    }
    
    .footer-section {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-partners {
        justify-content: center;
    }
    
    .header-nav {
        gap: 1rem;
    }
    
    .parts-slide {
        width: 380px;
    }
    
    .part-card-slider {
        height: 300px;
    }
    
    .part-name h3 {
        font-size: 1.2rem;
    }
    
    .hero-bg-image {
        background-position: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-btn {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-placeholder {
        font-size: 5rem;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon i {
        font-size: 1.5rem;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-icon i {
        font-size: 1.5rem;
    }
    
    .footer-logo-main {
        font-size: 1.2rem;
    }
    
    .footer-logo-sub {
        font-size: 0.9rem;
    }
    
    .site-header {
        padding: 0.8rem 0;
    }
    
    .parts-slide {
        width: 320px;
    }
    
    .part-card-slider {
        height: 260px;
    }
    
    .part-name h3 {
        font-size: 1.1rem;
    }
    
    .hero-bg-image {
        background-position: 60% center;
    }
}
