/* Auto Ankauf 24 spezifische CSS-Ergänzungen */

/* Hero Section Anpassung für Auto */
.hero {
    background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.8)), 
                url('../images/auto-hero-bg.jpg') center/cover;
}

/* Erweiterte Advantages Grid für 6 Items */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Brands Section */
.brands {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.brand-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.brand-item:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f3f4f6;
}

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

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2563eb;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Service Areas Deutschland spezifisch */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-item {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid #10b981;
}

.area-item:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Auto-spezifische Farbakzente */
.hero-title {
    color: white;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .brand-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .testimonial-item::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

