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

:root {
    --red: #E63946;
    --red-light: #FF6B6B;
    --red-dark: #C1121F;
    --black: #0066CC;
    --blue: #0066CC;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: var(--black);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

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

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0066CC 0%, #004080 50%, #0066CC 100%);
}

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

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

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--blue);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--red);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 102, 204, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(360deg) scale(1.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 1px;
}

.logo-red {
    color: var(--red);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), #ff6666);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-phone {
    background: var(--red);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--red);
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle-text {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    display: block;
    margin: 10px 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--light-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--red);
}

.car-buttons .btn-secondary {
    color: var(--red);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--red);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator {
    cursor: pointer;
    z-index: 10;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--red);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.services {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.services .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.services .section-title {
    color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.4);
    border-color: var(--blue);
}

.service-icon {
    font-size: 56px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 0, 0.05);
    color: var(--red);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    padding: 20px 20px 10px;
}

.service-card p {
    color: var(--dark-gray);
    padding: 0 20px 20px;
    line-height: 1.6;
}

.btn-service {
    display: block;
    margin: 0 20px 20px;
    padding: 12px;
    text-align: center;
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--red);
    color: var(--white);
}

.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #004080 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.about .section-title,
.contact .section-title,
.appointment-section .section-title,
.expertise-form-section .section-title,
.sell-car-section .section-title,
.warranty-section .section-title,
.auto-parts .section-title {
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px) scale(1.03);
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
}

.feature-icon {
    font-size: 48px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 15px;
}

.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.testimonials .section-title {
    color: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.3);
    border-color: var(--blue);
}

.stars {
    font-size: 16px;
    margin-bottom: 15px;
    color: #FFD700;
}

.stars i {
    margin-right: 3px;
}

.testimonial-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--red);
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--dark-gray);
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #004080 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.contact .section-title {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px) scale(1.03);
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
}

.contact-icon {
    font-size: 40px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 15px;
}

.contact-item a {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.map {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(230, 57, 70, 0.3);
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 45px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
    transform: translateY(-2px);
}

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

.footer {
    background: linear-gradient(135deg, #004080 0%, var(--blue) 100%);
    padding: 60px 0 20px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--red), var(--red-light)) 1;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 45px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.footer-col p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    border-color: var(--red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.footer-bottom p {
    color: var(--light-gray);
}
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.page-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 24px;
    color: var(--light-gray);
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-detailed {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-detailed .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.services-detailed .section-title {
    color: var(--black);
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card-detailed {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--red);
    transition: all 0.3s ease;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.3);
}

.service-icon-large {
    font-size: 72px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 0, 0, 0.05);
    color: var(--red);
}

.service-card-detailed h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    padding: 20px 30px 10px;
}

.service-card-detailed p {
    color: var(--dark-gray);
    padding: 0 30px 30px;
    line-height: 1.6;
}

.service-card-detailed .btn {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
    text-align: center;
}

.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #004080 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.appointment-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.appointment-section .section-title {
    color: var(--white);
}

.appointment-form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.appointment-form:hover {
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input[type="file"] {
    padding: 10px;
}

.benefits {
    padding: 80px 0;
    background: var(--light-gray);
}

.benefits .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.benefits .section-title {
    color: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.4);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--dark-gray);
}

.process-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.process-section .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.process-section .section-title {
    color: var(--black);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-step {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    border: 4px solid var(--white);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.step-icon {
    font-size: 64px;
    margin: 20px 0;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.step-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
}

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

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 15px 0 10px;
}

.process-step p {
    color: var(--dark-gray);
}

.expertise-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #004080 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.expertise-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.expertise-form-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.expertise-form-section .section-title {
    color: var(--white);
}

.gallery-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.gallery-section .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.gallery-section .section-title {
    color: var(--black);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.before-after-slider {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid transparent;
    background-image: linear-gradient(black, black), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.before-after-slider:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.after-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.before-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-handle {
    position: absolute;
    top: 0;
    height: 100%;
    width: 4px;
    background: transparent;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--red);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    border: 3px solid var(--white);
}

.label {
    position: absolute;
    top: 20px;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 4;
}

.label-before {
    left: 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.label-before.active {
    opacity: 1;
    transform: scale(1.1);
}

.label-after {
    right: 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.label-after.active {
    opacity: 1;
    transform: scale(1.1);
}

.warranty-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #004080 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.warranty-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.warranty-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    border: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.warranty-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3);
}

.warranty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.warranty-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.warranty-box p {
    font-size: 18px;
    color: var(--dark-gray);
}

.cars-for-sale {
    padding: 100px 0;
    background: var(--light-gray);
}

.cars-for-sale .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.cars-for-sale .section-title {
    color: var(--black);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--red), var(--red-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.car-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(255, 0, 0, 0.4);
    border-color: var(--blue);
}

.car-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
}

.car-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.car-info {
    padding: 25px;
}

.car-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.car-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.car-details span {
    color: var(--dark-gray);
    font-size: 14px;
}

.car-condition {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.car-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.car-buttons {
    display: flex;
    gap: 10px;
}

.car-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 14px;
}

.sell-car-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #004080 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.sell-car-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.sell-car-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.sell-car-section .section-title {
    color: var(--white);
}

.how-it-works {
    padding: 100px 0;
    background: var(--light-gray);
}

.how-it-works .section-badge {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-color: var(--red);
}

.how-it-works .section-title {
    color: var(--black);
}

.auto-parts {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #004080 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.auto-parts::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.auto-parts::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.auto-parts .section-title {
    color: var(--white);
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.part-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.part-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.4);
    border-color: var(--red);
}

.part-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.part-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    padding: 20px 20px 10px;
}

.part-card p {
    color: var(--light-gray);
    padding: 0 20px;
    font-size: 14px;
}

.part-price {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 15px 20px 10px;
}

.part-stock {
    padding: 0 20px 20px;
    color: var(--light-gray);
    font-size: 14px;
}

.part-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .services-grid,
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 102, 204, 0.98);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .services-grid,
    .testimonials-grid,
    .services-grid-2,
    .process-timeline,
    .before-after-grid,
    .cars-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-container {
        height: 300px;
    }
    
    .about-content,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .parts-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-phone {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
