/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    will-change: transform;
    backface-visibility: hidden;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Sections */

.btn-secondary {
    background: transparent;
    color: #d4af37;
    padding: 0.8rem 1.5rem;
    border: 2px solid #d4af37;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo {
    height: 40px;
}

.nav-brand span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Breaking News Ticker Banner */
.news-ticker-wrapper {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #d4af37 50%, #2d2d2d 75%, #1a1a1a 100%);
    background-size: 200% 100%;
    animation: bannerShine 3s ease-in-out infinite;
    overflow: hidden;
    z-index: 999;
    height: 45px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid #d4af37;
}

.news-ticker-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shine 4s ease-in-out infinite;
}

@keyframes bannerShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

.news-ticker {
    display: flex;
    width: fit-content;
    height: 100%;
}

.news-ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 105s linear infinite;
    padding: 0;
    will-change: transform;
}

.ticker-item {
    display: inline-block;
    padding: 0 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8),
                 0 0 20px rgba(212, 175, 55, 0.4),
                 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.6),
                     0 0 20px rgba(212, 175, 55, 0.3),
                     2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 0 0 15px rgba(212, 175, 55, 1),
                     0 0 30px rgba(212, 175, 55, 0.6),
                     2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.ticker-separator {
    display: inline-block;
    padding: 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.news-ticker-wrapper:hover .news-ticker-content {
    animation-play-state: paused;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('../images/pic.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 45px;
}

.hero-content {
    max-width: 450px;
    padding: 0 1rem;
    opacity: 0;
    pointer-events: none;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.hero p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero .hero-description {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Automotive Brand Styling */
.brand-automotive {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #1a1a1a, #333333, #1a1a1a);
    background-size: 200% 200%;
    padding: 4px 10px;
    border-radius: 6px;
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    font-size: 1rem;
}

.brand-automotive::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #d4af37, #f4d03f, #d4af37);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(6px);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Services Section - Elegante Listen-Darstellung */
.services-section-simple {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.services-section-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-header-simple {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.services-header-simple h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 300;
    margin-bottom: 0;
}

.services-list-elegant {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === NEUE LEISTUNGEN SEKTION - ORIGINALES DESIGN === */
.services-section-new {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 80px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.services-header-new {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-header-new h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.services-header-new .section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 0;
    font-weight: 400;
}

.services-container-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-item-new {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
}

.service-item-new:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.service-icon-new {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transition: all 0.3s ease;
}

.service-item-new:hover .service-icon-new {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
    transform: scale(1.1);
}

.service-text-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.service-text-new h3 {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.service-item-new:hover .service-text-new h3 {
    color: #f4d03f;
}

.service-text-new p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-container-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-section-new {
        padding: 60px 0;
    }
    
    .services-header-new h2 {
        font-size: 2rem;
    }
    
    .services-container-new {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-item-new {
        min-height: 280px;
        padding: 25px 15px;
    }
    
    .service-icon-new {
        font-size: 2.5rem;
    }
    
    .service-text-new h3 {
        font-size: 1.3rem;
    }
    
    .service-text-new p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-section-new {
        padding: 40px 0;
    }
    
    .services-header-new h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .services-header-new .section-subtitle {
        font-size: 1rem;
    }
    
    .service-item-new {
        min-height: 250px;
        padding: 20px 12px;
    }
    
    .service-icon-new {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .service-text-new h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-text-new p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* === ENDE SERVICES BOXES === */

/* Testimonials Section - Modernes Card-Design */
.testimonials-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    animation: testimonialGlow 12s ease-in-out infinite;
}

@keyframes testimonialGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.testimonials-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.highlight-gold {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 107, 53, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.rating-stars {
    color: #d4af37;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #d4af37;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.customer-type {
    color: #999;
    font-size: 0.9rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Review Controls */
.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.review-prev,
.review-next {
    background: #d4af37;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-prev:hover,
.review-next:hover {
    background: #b8941f;
    transform: scale(1.1);
}

.review-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #d4af37;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 60% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section h2 {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #d4af37;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-form button {
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-card a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #b8941f;
    text-decoration: underline;
}

.whatsapp-card .whatsapp-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #e1e5e9; /* Verwende Standard-Rahmenfarbe statt Rot */
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #e1e5e9; /* Verwende Standard-Rahmenfarbe statt Grün */
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0 0 1rem 0;
    position: relative;
    margin-top: 0 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    margin-bottom: 1rem;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-contact .contact-details p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d4af37;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Minimaler Footer Styling */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/x.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 1.5rem 0;
    position: relative;
    margin-top: 0;
}

/* Social Sharing Section Fix */
.social-sharing {
    margin-bottom: 0 !important;
    padding-bottom: 3rem !important;
}

/* Main Content Fix */
main#main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer .footer-bottom {
    border-top: none;
    padding-top: 0;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-bottom p {
    margin: 0;
    text-align: center;
}

/* WhatsApp Button */
.whatsapp-contact {
    margin-top: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    font-size: 0.9rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .service-card {
        flex: 0 1 calc(50% - 1rem);
        min-width: 300px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .hero {
        margin-top: 40px;
    }
    
    .news-ticker-wrapper {
        height: 40px;
    }
    
    .ticker-item {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .ticker-separator {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .brand-automotive {
        font-size: 0.9em;
        letter-spacing: 0.05em;
    }
    
    .brand-automotive::before {
        filter: blur(4px);
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .service-card {
        flex: 0 1 100%;
        min-width: auto;
        max-width: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 15px !important;
    }
    
    .contact-form-container {
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .contact-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* KOMPLETT NEUE MOBILE KONTAKTFORMULAR-OPTIMIERUNG */
    .contact-section {
        padding: 2rem 0 !important;
    }
    
    .contact-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.1 !important;
    }
    
    .contact-section .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 15px !important;
    }
    
    /* Kontakt-Info Karten kompakter machen */
    .contact-info {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    
    .contact-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        border-radius: 8px !important;
        padding: 1rem !important;
        text-align: center !important;
    }
    
    .contact-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        color: #d4af37 !important;
    }
    
    .contact-card p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        color: #cccccc !important;
    }
    
    /* Formular-Inputs optimieren */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1rem !important;
        padding: 0.75rem !important;
        border-radius: 6px !important;
    }
    
    .contact-form textarea {
        min-height: 100px !important;
        resize: vertical !important;
    }
    
    .contact-form label {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .contact-form .btn-primary {
        padding: 1rem !important;
        font-size: 1.1rem !important;
        margin-top: 1rem !important;
    }
    
    /* Checkbox-Bereich kompakter */
    .checkbox-group {
        margin-bottom: 1.5rem !important;
    }
    
    .checkbox-group label {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* EXTRA KOMPAKTE KONTAKT-SEKTION FÜR KLEINSTE BILDSCHIRME */
    @media (max-width: 380px) {
        .contact-info {
            grid-template-columns: 1fr !important;
            gap: 0.5rem !important;
        }
        
        .contact-card {
            padding: 0.75rem !important;
        }
        
        .contact-card h3 {
            font-size: 0.8rem !important;
        }
        
        .contact-card p {
            font-size: 0.75rem !important;
        }
        
        .contact-section h2 {
            font-size: 1.6rem !important;
        }
        
        .contact-section .section-subtitle {
            font-size: 0.9rem !important;
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        margin-top: 36px;
    }
    
    .news-ticker-wrapper {
        height: 36px;
    }
    
    .ticker-item {
        font-size: 0.75rem;
        padding: 0 0.8rem;
    }
    
    .ticker-separator {
        font-size: 1rem;
        padding: 0 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    /* === KOMPLETT NEUES MINIMALISTISCHES MOBILE DESIGN === */
    /* KEINE BOXEN - KEINE KREISE - NUR SAUBERE LISTEN */
    
    .services-section-simple {
        padding: 2rem 0 !important;
        background: transparent !important;
    }
    
    .services-header-simple {
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
        text-align: center !important;
    }
    
    .services-header-simple h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
        color: #ffffff !important;
    }
    
    .services-header-simple .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        color: #d4af37 !important;
    }
    
    /* SERVICES LISTE - EINFACH UND SAUBER */
    .services-grid-boxes {
        display: block !important;
        padding: 0 1.5rem !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        
        /* Alle Box/Grid Eigenschaften entfernen */
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        gap: 0 !important;
        grid: none !important;
        grid-template-columns: none !important;
        flex-direction: initial !important;
    }
    
    /* SERVICE ITEMS - SIMPLE LISTEN-EINTRÄGE */
    .service-box {
        /* ALLE BOX-EIGENSCHAFTEN ENTFERNEN */
        display: block !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        
        /* Einfacher Listen-Stil */
        margin: 0 0 1.5rem 0 !important;
        padding: 0 !important;
        width: 100% !important;
        text-align: left !important;
        position: relative !important;
        
        /* Subtile Trennlinie unten */
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
        padding-bottom: 1rem !important;
    }
    
    .service-box:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
    
    .service-box:hover {
        background: none !important;
        transform: none !important;
        border-color: rgba(212, 175, 55, 0.4) !important;
    }
    
    /* ICONS - EINFACHE INLINE DARSTELLUNG */
    .service-box .service-icon {
        display: inline !important;
        font-size: 1.2rem !important;
        margin: 0 0.5rem 0 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        flex-shrink: initial !important;
        vertical-align: baseline !important;
    }
    
    /* CONTENT - EINFACHE TYPOGRAFIE */
    .service-box .service-content {
        display: inline !important;
        flex: initial !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .service-box .service-content h3 {
        display: inline !important;
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #d4af37 !important;
        font-weight: 600 !important;
        text-align: left !important;
    }
    
    .service-box .service-content p {
        display: block !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0.3rem 0 0 1.7rem !important;
        padding: 0 !important;
        color: #cccccc !important;
        text-align: left !important;
        
        /* Normale Text-Anzeige - keine Begrenzung */
        -webkit-line-clamp: none !important;
        line-clamp: none !important;
        -webkit-box-orient: initial !important;
        overflow: visible !important;
        display: block !important;
    }
    
    /* SPEZIELLE ANPASSUNGEN FÜR SEHR KLEINE BILDSCHIRME */
    @media (max-width: 400px) {
        .services-grid-boxes {
            padding: 0 1rem !important;
        }
        
        .service-box {
            margin-bottom: 1.25rem !important;
            padding-bottom: 0.75rem !important;
        }
        
        .service-box .service-icon {
            font-size: 1.1rem !important;
            margin-right: 0.4rem !important;
        }
        
        .service-box .service-content h3 {
            font-size: 1rem !important;
        }
        
        .service-box .service-content p {
            font-size: 0.85rem !important;
            margin-left: 1.5rem !important;
        }
        
        .services-header-simple h2 {
            font-size: 1.6rem !important;
        }
        
        .services-header-simple .section-subtitle {
            font-size: 0.9rem !important;
        }
    }
    
    /* Reduziere Hover-Effekte für Touch-Geräte */
    .service-box:hover {
        transform: translateX(5px); /* Horizontale Bewegung statt vertikal */
    }
    
    .service-box:hover .service-icon {
        transform: scale(1.05);
    }
}

/* Mittlere mobile Bildschirme (576px - 768px) - Hybrid-Ansicht */
@media (min-width: 481px) and (max-width: 768px) {
    .services-grid-boxes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-box {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 10px;
        padding: 1.25rem;
        transition: all 0.3s ease;
    }
    
    .service-box .service-icon {
        font-size: 1.75rem;
        margin: 0 1.25rem 0 0;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 50%;
/* Responsive Anpassungen für Service-Boxen */
@media screen and (max-width: 1200px) {
    .services-grid-boxes {
        gap: 1.5rem;
    }
    
    .service-box {
        -ms-flex: 1 1 calc(50% - 0.75rem);
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 300px;
        max-width: none;
    }
}

@media screen and (max-width: 900px) {
    .services-grid-boxes {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .service-box {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        min-width: unset;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .services-grid-boxes {
        padding: 1rem 0;
        gap: 1.25rem;
    }
    
    .service-box {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .service-box .service-icon {
        font-size: 2.5rem;
        margin: 0 auto 1rem auto;
    }
    
    .service-box .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-box .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 480px) {
    .services-grid-boxes {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    .service-box {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .service-box .service-icon {
        font-size: 2.25rem;
        margin: 0 auto 0.8rem auto;
    }
    
    .service-box .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .service-box .service-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}
    }
    
    .service-box .service-content {
        flex: 1;
        text-align: left;
    }
    
    .service-box .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #d4af37;
    }
    
    .service-box .service-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #cccccc;
        margin: 0;
    }
}

/* Touch-optimierte Interaktionen */
@media (max-width: 768px) and (pointer: coarse) {
    .service-box {
        min-height: 44px; /* Apple's empfohlene Touch-Target-Größe */
        cursor: default;
        /* Verbesserte Touch-Feedback */
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
    }
    
    .service-box:hover {
        transform: none; /* Deaktiviere Desktop-Hover auf Touch-Geräten */
    }
    
    .service-box:active {
        transform: scale(0.98); /* Subtile Feedback-Animation beim Berühren */
        transition: transform 0.1s ease;
        background: rgba(212, 175, 55, 0.1);
    }
    
    .service-box .service-icon {
        user-select: none; /* Verhindere Textauswahl */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none; /* Icon nicht klickbar */
    }
    
    /* Touch-optimierte Service-Box für kleine Bildschirme */
    @media (max-width: 480px) {
        .service-box {
            /* Horizontales Layout mit verbesserter Touch-Ergonomie */
            min-height: 60px;
            padding: 0.75rem 1rem;
            border-radius: 6px;
        }
        
        .service-box:active {
            transform: translateX(3px) scale(0.99);
            border-color: rgba(212, 175, 55, 0.5);
        }
    }
}

/* Zusätzliche Media-Query für sehr große Handys/kleine Tablets */
@media (min-width: 481px) and (max-width: 576px) {
    .services-grid-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .service-box {
        padding: 1.5rem;
    }
    
    .service-box .service-icon {
        font-size: 2.1rem;
        margin: 0 auto 1rem auto;
    }
    
    .service-box .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-box .service-content p {
        font-size: 0.95rem;
    }
}

/* Mobile Optimierung für Services Section */
@media (max-width: 480px) {
    .services-section-simple {
        padding: 3rem 0 2rem 0;
    }
    
    .services-header-simple {
        margin-bottom: 2rem;
    }
    
    .services-header-simple h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .services-header-simple .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.4;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better styling for legal pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    line-height: 1.8;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 16px 16px 0 0;
}

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.legal-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
    position: relative;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4af37;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #d4af37;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content p strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
    position: relative;
}

.legal-content ul li::marker {
    color: #d4af37;
}

/* Contact information styling */
.legal-content p:has(br) {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    margin: 2rem 0;
    font-family: 'Inter', monospace;
    font-size: 1rem;
}

/* Back button styling */
.legal-content .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-align: center;
    min-width: 200px;
}

.legal-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f, #d4af37);
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
        margin: 1rem;
        border-radius: 12px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .legal-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .legal-content ul {
        padding-left: 1.5rem;
    }
    
    .legal-content .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Legal page main content spacing */
main#main {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 100px);
    padding: 60px 0;
}

/* Enhanced Service Boxes */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-box:hover::before {
    left: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.service-box .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.service-box h4 {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-box p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .service-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-box {
        padding: 1.5rem;
    }
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Mobile Styles für einfache Services */
@media (max-width: 768px) {
    .services-section-simple {
        padding: 3rem 0;
    }
    
    .services-header-simple h2 {
        font-size: 2.2rem;
    }
    
    .service-item-simple {
        margin-bottom: 2rem;
    }
    
    .service-item-simple:hover {
        transform: translateX(8px);
    }
    
    .service-icon {
        font-size: 2rem;
        margin-right: 1.5rem;
        margin-top: 0.3rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .service-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Mobile Styles für Testimonials */
@media (max-width: 768px) {
    .testimonials-modern {
        padding: 3rem 0;
    }
    
    .testimonials-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Tablet Styles für Testimonials */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
}

/* ======================================================= */
/* NEUE MOBILE SERVICE LISTE - KOMPLETT OHNE BOXEN      */
/* ======================================================= */

/* NEUE EINFACHE SERVICE LISTE CSS */
.services-simple-list {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-item {
    padding: 15px 10px;
    margin-bottom: 15px;
    border-left: 4px solid #C41E3A;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    line-height: 1.6;
    display: block;
    color: #ffffff;
}

.service-item strong {
    color: #C41E3A;
    font-size: 1.1em;
    display: inline-block;
    margin-bottom: 5px;
}

.service-description {
    color: #ddd;
    margin-top: 5px;
    display: block;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Mobile Optimierung */
@media screen and (max-width: 768px) {
    .service-item {
        padding: 12px 8px;
        margin-bottom: 12px;
        font-size: 0.9em;
    }
    
    .service-item strong {
        font-size: 1em;
    }
    
    .service-description {
        font-size: 0.85em;
        margin-top: 3px;
    }
}
@media screen and (max-width: 768px) {
    
    /* SERVICES SEKTION - SAUBER UND MINIMALISTISCH */
    .services-section-simple {
        padding: 2rem 0 !important;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    }
    
    .services-header-simple {
        text-align: center !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .services-header-simple h2 {
        font-size: 1.8rem !important;
        color: #ffffff !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }
    
    .services-header-simple .section-subtitle {
        font-size: 1rem !important;
        color: #d4af37 !important;
        line-height: 1.4 !important;
    }
    
    /* SERVICES LISTE - KEINE BOXEN, NUR SAUBERE TEXTLISTE */
    .services-grid-boxes {
        display: block !important;
        grid: none !important;
        grid-template-columns: none !important;
        padding: 0 1.5rem !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* SERVICE ITEMS - EINFACHE LISTENPUNKTE */
    .service-box {
        display: block !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 0 1rem 0 !important;
        margin: 0 0 1.5rem 0 !important;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    }
    
    .service-box:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
    
    /* ICONS - EINFACH INLINE */
    .service-box .service-icon {
        display: inline !important;
        font-size: 1.2rem !important;
        margin: 0 0.5rem 0 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        vertical-align: baseline !important;
    }
    
    /* CONTENT - NUR TEXT */
    .service-box .service-content {
        display: inline !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .service-box .service-content h3 {
        display: inline !important;
        font-size: 1.1rem !important;
        color: #d4af37 !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.3 !important;
    }
    
    .service-box .service-content p {
        display: block !important;
        font-size: 0.9rem !important;
        color: #cccccc !important;
        line-height: 1.5 !important;
        margin: 0.3rem 0 0 1.7rem !important;
        padding: 0 !important;
        text-align: left !important;
        overflow: visible !important;
    }
}
    
    /* SERVICE ITEMS - SIMPLE LISTEN-STIL */
    .service-box {
        display: block !important;
        flex-direction: initial !important;
        align-items: initial !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 0 1rem 0 !important;
        margin: 0 0 1.5rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
    }
    
    .service-box:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
    
    /* ICONS - INLINE MIT TEXT */
    .service-box .service-icon {
        display: inline !important;
        font-size: 1.2rem !important;
        width: auto !important;
        height: auto !important;
        margin: 0 0.5rem 0 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        flex-shrink: initial !important;
        align-items: initial !important;
        justify-content: initial !important;
        text-align: left !important;
        vertical-align: baseline !important;
    }
    
    /* CONTENT - EINFACHER TEXT */
    .service-box .service-content {
        display: inline !important;
        flex: initial !important;
        min-width: initial !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .service-box .service-content h3 {
        display: inline !important;
        font-size: 1.1rem !important;
        color: #d4af37 !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }
    
    .service-box .service-content p {
        display: block !important;
        font-size: 0.9rem !important;
        color: #cccccc !important;
        line-height: 1.5 !important;
        margin: 0.3rem 0 0 1.7rem !important;
        padding: 0 !important;
        text-align: left !important;
        -webkit-line-clamp: none !important;
        line-clamp: none !important;
        -webkit-box-orient: initial !important;
        overflow: visible !important;
    }

/* EXTRA KLEINE BILDSCHIRME */
@media screen and (max-width: 400px) {
    .service-item {
        padding: 10px 6px;
        margin-bottom: 10px;
        font-size: 0.85em;
    }
    
    .service-item strong {
        font-size: 0.95em;
    }
    
    .service-description {
        font-size: 0.8em;
    }
    
    .services-header-simple h2 {
        font-size: 1.6rem !important;
    }
}

/* Force Service Boxes Display - Override für bessere Kompatibilität */
.services-grid-boxes {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.service-box {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9)) !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: visible !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    display: block !important;
}

.service-box:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2) !important;
}

.service-box .service-icon {
    font-size: 3rem !important;
    margin: 0 auto 1.5rem auto !important;
    display: block !important;
    text-align: center !important;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)) !important;
    transition: all 0.3s ease !important;
}

.service-box:hover .service-icon {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)) !important;
}

.service-box .service-content {
    text-align: center !important;
}

.service-box .service-content h3 {
    color: #d4af37 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.service-box .service-content p {
    color: #cccccc !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Responsive für Service-Boxen - Force */
@media (max-width: 768px) {
    .services-grid-boxes {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        padding: 1rem 0 !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    .service-box {
        padding: 1.75rem !important;
        border-radius: 12px !important;
        max-width: 100% !important;
    }
    
    .service-box .service-icon {
        font-size: 2.25rem !important;
        margin: 0 auto 1.25rem auto !important;
        text-align: center !important;
    }
    
    .service-box .service-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    .service-box .service-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

/* Rundum-Service - Cross-Browser Kompatibles Layout */
.rundum-service-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Fallback für ältere Browser ohne gap-Support */
@supports not (gap: 1rem) {
    .rundum-service-container {
        margin: 2rem auto -1.5rem auto;
    }
    
    .service-item {
        margin-bottom: 1.5rem;
    }
}

.service-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(25% - 1.125rem);
    flex: 1 1 calc(25% - 1.125rem);
    min-width: 280px;
    max-width: 320px;
    background: -webkit-linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9));
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    -webkit-box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    -webkit-filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    height: 4rem;
}

.service-item:hover .service-icon {
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
    -webkit-filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.service-item h4 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0 0.8rem 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-height: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.service-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.service-item:hover p {
    opacity: 1;
}

/* Responsive Anpassungen für Rundum-Service */
@media screen and (max-width: 1200px) {
    .service-item {
        -ms-flex: 1 1 calc(50% - 0.75rem);
        flex: 1 1 calc(50% - 0.75rem);
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    .rundum-service-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        min-width: unset;
        max-width: none;
        margin: 0 auto;
        width: 100%;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
        min-height: 3rem;
    }
    
    .service-icon {
        font-size: 3rem;
        height: 3.5rem;
    }
}

@media screen and (max-width: 480px) {
    .rundum-service-container {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .service-item h4 {
        font-size: 1.1rem;
        min-height: 2.5rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-icon {
        font-size: 2.5rem;
        height: 3rem;
        margin-bottom: 0.8rem;
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .rundum-service-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .rundum-service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .rundum-service-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =================================================================
   CROSS-BROWSER FIX FÜR SERVICE-BOXEN - ÜBERSCHREIBT ALLE ANDEREN REGELN
   ================================================================= */

/* Hauptlayout für Services Grid - Flexbox mit !important */
.services-grid-boxes {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem 0 !important;
    
    /* Alle Grid-Properties explizit deaktivieren */
    grid: none !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    grid-auto-columns: unset !important;
    grid-auto-rows: unset !important;
    grid-column-gap: unset !important;
    grid-row-gap: unset !important;
    grid-gap: unset !important;
}

/* Service-Box Styling mit Flexbox */
.service-box {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 calc(33.333% - 1.333rem) !important;
    flex: 1 1 calc(33.333% - 1.333rem) !important;
    min-width: 300px !important;
    max-width: 380px !important;
    min-height: 280px !important;
    
    /* Flexbox für symmetrischen Inhalt */
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    
    /* Alle Grid-Properties explizit deaktivieren */
    grid-column: unset !important;
    grid-row: unset !important;
    grid-area: unset !important;
}

.service-box .service-icon {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 auto !important;
    flex: 0 0 auto !important;
    font-size: 3rem !important;
    margin: 0 auto 1.5rem auto !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    height: 60px !important;
    line-height: 60px !important;
}

.service-box .service-content {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    text-align: center !important;
    width: 100% !important;
}

.service-box .service-content h3 {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 auto !important;
    flex: 0 0 auto !important;
    color: #d4af37 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    line-height: 1.3 !important;
    min-height: 3.5rem !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.service-box .service-content p {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    color: #cccccc !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    text-align: center !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

/* Responsive Design mit !important */
@media screen and (max-width: 1200px) {
    .services-grid-boxes {
        gap: 1.5rem !important;
        padding: 1.5rem 0 !important;
    }
    
    .service-box {
        -ms-flex: 1 1 calc(50% - 0.75rem) !important;
        flex: 1 1 calc(50% - 0.75rem) !important;
        min-width: 280px !important;
        max-width: none !important;
    }
}

@media screen and (max-width: 900px) {
    .services-grid-boxes {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        max-width: 600px !important;
        padding: 1rem 0 !important;
    }
    
    .service-box {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 100% !important;
        flex: 1 1 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .services-grid-boxes {
        padding: 1rem 0.5rem !important;
        gap: 1.25rem !important;
    }
    
    .service-box {
        padding: 1.5rem !important;
        border-radius: 12px !important;
        min-height: 250px !important;
    }
    
    .service-box .service-icon {
        font-size: 2.5rem !important;
        margin: 0 auto 1rem auto !important;
        height: 50px !important;
        line-height: 50px !important;
    }
    
    .service-box .service-content h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
        min-height: 3rem !important;
    }
    
    .service-box .service-content p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
}

@media screen and (max-width: 480px) {
    .services-grid-boxes {
        padding: 0.5rem !important;
        gap: 1rem !important;
    }
    
    .service-box {
        padding: 1.25rem !important;
        border-radius: 10px !important;
        min-height: 220px !important;
    }
    
    .service-box .service-icon {
        font-size: 2.25rem !important;
        margin: 0 auto 0.8rem auto !important;
        height: 45px !important;
        line-height: 45px !important;
    }
}

/* Finale Browser-Normalisierung für perfekte Konsistenz */
.service-box * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* WICHTIGE KORREKTUR: Alle Service-Boxen haben die exakt gleiche Höhe */
.services-grid-boxes .service-box {
    height: 320px !important;
    max-height: 320px !important;
    min-height: 320px !important;
}

/* Responsive Höhen-Anpassungen */
@media screen and (max-width: 900px) {
    .services-grid-boxes .service-box {
        height: 280px !important;
        max-height: 280px !important;
        min-height: 280px !important;
    }
}

@media screen and (max-width: 480px) {
    .services-grid-boxes .service-box {
        height: 260px !important;
        max-height: 260px !important;
        min-height: 260px !important;
    }
}

/* Breadcrumb auf mobilen Geräten ausblenden */
@media (max-width: 768px) {
    nav[aria-label="Breadcrumb"] {
        display: none;
    }
}

/* FINALE KORREKTUR: Service-Box Umrandung sicherstellen */
.services-grid-boxes .service-box,
.services-section-simple .service-box {
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 15px !important;
    overflow: visible !important;
    position: relative !important;
}

/* Sicherstellen dass die Umrandung nicht abgeschnitten wird */
.services-grid-boxes {
    overflow: visible !important;
}

.services-section-simple {
    overflow: visible !important;
}
