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

:root {
    --primary-color: #004a99;
    --accent-color: #ffcc00;
    --bg-light: #f4f7f9;
    --text-main: #333;
    --text-light: #666;
    --border-color: #ddd;
    --border-radius: 10px;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    overflow-x: hidden;
    will-change: scroll-position;
}

/* Performance Optimierungen */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Accessibility Verbesserungen */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

button,
a {
    cursor: pointer;
}

/* Skip to main content für Screen Reader */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-text-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.logo-text-link:hover {
    color: var(--primary-color);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.header-contact {
    display: flex;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav {
    padding: 15px 0;
}

/* Nav border nur auf index.html und leistungen.html */
body:not(.no-nav-border) .nav {
    border-top: 1px solid var(--border-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.btn-cta {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #003d7a;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('bilder/hero-bg.jpg') center/cover;
    opacity: 0.5;
    z-index: 1;
}

/* LKW-Foto zusätzlich im Hero-Bereich sichtbar machen */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 600px;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    object-fit: cover;
    will-change: opacity;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    min-width: 220px;
    padding: 14px 28px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.feature-item i {
    font-size: 22px;
}

.feature-item i {
    color: var(--accent-color);
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #333;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #fff;
    padding: 0;
    padding-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    margin-bottom: 20px;
    will-change: transform;
    contain: layout style;
}

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

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

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

.service-card > .service-icon {
    margin: -50px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-card h3,
.service-card p,
.service-card ul {
    padding: 0 30px;
}

/* Service Cards ohne Bild - Icons vollständig sichtbar */
/* Service Cards ohne Bild - Icons vollständig sichtbar */
.services-overview {
    padding: 120px 0 100px;
    position: relative;
    margin-top: 40px;
}

.services-overview .service-card,
.services-grid .service-card:not(:has(.service-image)) {
    padding-top: 80px;
    margin-top: 50px;
    position: relative;
    overflow: visible;
    min-height: 300px;
}

.services-overview .service-card .service-icon,
.services-grid .service-card:not(:has(.service-image)) .service-icon {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    width: 90px;
    height: 90px;
    font-size: 36px;
}

.service-card h3 {
    margin-top: 0;
}

.service-link {
    display: block;
    margin: 20px 30px 30px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-link:hover {
    background: #003d7a;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Why Us Section */
.why-us {
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
}

.why-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-light);
}

/* Districts Section */
.districts {
    background: var(--bg-light);
}

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

.district-item {
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.district-item:hover {
    transform: translateY(-3px);
}

.district-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.district-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Process Section */
.process {
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
}

/* Request Form Section */
.request-form-section {
    background: var(--bg-light);
    padding: 80px 0;
}

#anker-form-wrapper {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Progress Bar */
.step-indicator { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 30px; 
    position: relative; 
}
.step-indicator::before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 0; 
    right: 0; 
    height: 2px; 
    background: #eee; 
    z-index: 1; 
    transform: translateY(-50%); 
}
.step { 
    width: 35px; 
    height: 35px; 
    background: #fff; 
    border: 2px solid #eee; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 2; 
    font-weight: bold; 
    transition: 0.3s; 
}
.step.active { 
    border-color: var(--primary-color); 
    color: var(--primary-color); 
    transform: scale(1.1); 
}
.step.completed { 
    background: var(--primary-color); 
    border-color: var(--primary-color); 
    color: #fff; 
}

/* Steps & Cards */
.form-step { 
    display: none; 
}
.form-step.active { 
    display: block; 
    animation: fadeIn 0.4s ease; 
}
@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

.card-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 15px; 
    margin: 20px 0; 
}
.card { 
    border: 2px solid #eee; 
    border-radius: var(--border-radius); 
    padding: 20px; 
    text-align: center; 
    cursor: pointer; 
    transition: 0.3s; 
    user-select: none;
}
.card:hover { 
    border-color: var(--primary-color); 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.card.selected { 
    border-color: var(--primary-color); 
    background: #f0f7ff; 
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.2);
}
.card.invalid {
    border-color: #ff4d4d !important;
    background: #fff9f9;
    animation: shake 0.3s;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.card i { 
    font-size: 30px; 
    color: var(--primary-color); 
    margin-bottom: 10px; 
    display: block; 
}
.card input { 
    display: none; 
}
.card:has(input:checked) {
    border-color: var(--primary-color);
    background: #f0f7ff;
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.2);
}

/* Form Elements */
.form-group { 
    margin-bottom: 15px; 
}
label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: 600; 
    font-size: 14px; 
}
input, select, textarea { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 15px; 
    box-sizing: border-box; 
}
.row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

h2 { 
    font-size: 20px; 
    color: var(--primary-color); 
    margin-bottom: 20px; 
}
h3 { 
    font-size: 16px; 
    color: var(--primary-color); 
    border-bottom: 1px solid #eee; 
    padding-bottom: 5px; 
    margin-top: 25px; 
}

/* Buttons */
.btn-nav { 
    display: flex; 
    justify-content: space-between; 
    margin-top: 30px; 
}
button { 
    padding: 12px 25px; 
    border-radius: 8px; 
    border: none; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 16px; 
    transition: 0.3s; 
}
.btn-next { 
    background: var(--primary-color); 
    color: #fff; 
    margin-left: auto; 
}
.btn-next:hover {
    background: #003d7a;
}
.btn-prev { 
    background: #eee; 
    color: #666; 
}
.btn-prev:hover {
    background: #ddd;
}
.btn-submit { 
    background: #28a745; 
    color: #fff; 
}
.btn-submit:hover {
    background: #218838;
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Validation Style */
.invalid { 
    border-color: #ff4d4d !important; 
    background: #fff9f9; 
}
.error-message {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
}

#thank-you { 
    text-align: center; 
    display: none; 
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    font-size: 80px;
    color: #28a745;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#thank-you h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-details {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.thank-you-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.thank-you-item:last-child {
    margin-bottom: 0;
}

.thank-you-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.thank-you-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 5px;
}

.thank-you-item p {
    margin: 0;
    color: var(--text-light);
}

.thank-you-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thank-you-item a:hover {
    text-decoration: underline;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.inventory-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
}

.inventory-section::-webkit-scrollbar {
    width: 6px;
}

.inventory-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.inventory-section::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.room-block {
    background: white;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.room-block:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background 0.2s;
    flex-wrap: wrap;
}

.item-row:hover {
    background: #f5f5f5;
}

.item-row input[type="text"],
.item-row select {
    flex: 2;
    min-width: 200px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.item-row input[type="number"] {
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}
.btn-add {
    background: var(--accent-color);
    color: #333;
    padding: 8px 15px;
    font-size: 14px;
    margin-top: 10px;
}
.btn-remove {
    background: #ff4d4d;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}
.volume-display {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}
.volume-display .total {
    font-size: 24px;
    font-weight: bold;
}

/* About Section */
.about {
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Prices Section */
.prices {
    background: var(--bg-light);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.price-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.price-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-price {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-price:hover {
    background: #003d7a;
}

.prices-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.testimonials-image {
    position: sticky;
    top: 100px;
}

.testimonials-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 10px;
}

.testimonial-service {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Service Detail Section */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: var(--bg-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 16px;
}

/* Services Overview */
.services-overview {
    background: #fff;
    padding: 80px 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--accent-color);
    color: #333;
}

/* Calculator Section */
.calculator-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.calculator-form {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.calc-row {
    margin-bottom: 20px;
}

.calc-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.calc-row select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.calc-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.calc-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.calc-checkboxes input[type="checkbox"] {
    width: auto;
}

.calc-result {
    margin-top: 30px;
    padding: 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius);
    text-align: center;
}

.calc-result-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.calc-result-price {
    font-size: 42px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.calc-note {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.calculator-info {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.calculator-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.calculator-info ul {
    list-style: none;
    padding: 0;
}

.calculator-info li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.calculator-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.calc-tip {
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

/* EEAT Section */
.eeat-section {
    background: #fff;
    padding: 80px 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certificate-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: transform 0.3s;
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.certificate-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.certificate-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: #6c757d;
    margin-left: 10px;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #6c757d;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--text-light);
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.faq-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* About Detail Section */
.about-detail {
    background: #fff;
    padding: 80px 0;
}

.about-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-detail-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-detail-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-detail-text h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.about-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-detail-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.about-detail-text li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-item {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.team-item:hover {
    transform: translateY(-5px);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
}

.team-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Certificates Section */
.certificates-section {
    background: #fff;
    padding: 80px 0;
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Price Info Section */
.price-info {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.price-info h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.factor-item {
    background: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.factor-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.factor-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.factor-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.price-transparency {
    margin-top: 40px;
    padding: 40px;
    background: #fff;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.price-transparency h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-transparency ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.price-transparency li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.price-transparency li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.price-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-cta {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Legal Content */
.legal-content {
    background: #fff;
    padding: 80px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.legal-text h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.legal-text h4 {
    color: var(--text-main);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.legal-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--text-main);
    text-decoration: none;
}

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

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li i {
    margin-right: 8px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .testimonials-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-image {
        position: static;
    }
}

@media (max-width: 968px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calc-checkboxes {
        grid-template-columns: 1fr;
    }
}

/* Einfaches Kontaktformular Section */
.simple-contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.simple-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,74,153,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.simple-contact-section .container {
    position: relative;
    z-index: 1;
}

.simple-contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.simple-contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.simple-contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.simple-contact-form-wrapper .form-group {
    margin-bottom: 0;
}

.simple-contact-form-wrapper input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.simple-contact-form-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
    outline: none;
}

.simple-contact-form-wrapper button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.simple-contact-form-wrapper .form-note {
    margin-top: 25px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e4e8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.simple-contact-form-wrapper .form-note:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 74, 153, 0.1);
}

.simple-contact-form-wrapper .form-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.simple-contact-form-wrapper .form-note a:hover {
    color: #0066cc;
    border-bottom-color: #0066cc;
    padding-bottom: 0;
    border-bottom-width: 3px;
}

.simple-contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s;
    background: #fff;
}

.simple-contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
}

.simple-contact-form-wrapper .dsgvo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f4f7f9 0%, #f9fafb 100%);
    border: 1px solid #e0e4e8;
    border-radius: 10px;
    margin: 25px 0;
    transition: all 0.3s ease;
}

.simple-contact-form-wrapper .dsgvo-checkbox:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f5fa 0%, #f5f8fb 100%);
}

.simple-contact-form-wrapper .dsgvo-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
    border-radius: 4px;
}

.simple-contact-form-wrapper .dsgvo-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}

.simple-contact-form-wrapper .dsgvo-label-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.simple-contact-form-wrapper .dsgvo-checkbox label {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-main);
    cursor: pointer;
    line-height: 1.6;
    margin: 0;
    display: block;
}

.simple-contact-form-wrapper .dsgvo-checkbox label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.simple-contact-form-wrapper .dsgvo-checkbox label a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.simple-contact-form-wrapper .dsgvo-checkbox input[type="checkbox"]:checked + .dsgvo-label-wrapper label {
    color: var(--text-main);
}

.simple-contact-form-wrapper .dsgvo-checkbox .error-message {
    display: block;
    color: #f44336;
    font-size: 12px;
    margin-top: 0;
    padding-left: 0;
    font-weight: 500;
}

.simple-contact-form-wrapper .dsgvo-checkbox input[type="checkbox"].invalid {
    border: 2px solid #f44336;
    outline: 2px solid rgba(244, 67, 54, 0.2);
}

@media (max-width: 768px) {
    .simple-contact-form-wrapper .dsgvo-checkbox {
        padding: 15px;
        gap: 10px;
    }
    
    .simple-contact-form-wrapper .dsgvo-checkbox label {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Elegante Leistungen-Seite Styles */
.leistungen-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.leistungen-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.leistungen-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #fff;
}

.leistungen-hero p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.service-elegant {
    padding: 100px 0;
    background: #fff;
}

.service-elegant:nth-child(even) {
    background: var(--bg-light);
}

.service-elegant-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-elegant-reverse .service-elegant-wrapper {
    direction: rtl;
}

.service-elegant-reverse .service-elegant-wrapper > * {
    direction: ltr;
}

.service-elegant-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
}

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

.service-elegant-image:hover img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
}

.service-badge {
    background: rgba(255,255,255,0.95);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-badge i {
    font-size: 20px;
}

.service-elegant-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 40px;
}

.service-variants {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-variant-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.service-variant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.variant-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.service-variant-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-variant-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-features-elegant {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-features-elegant h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.feature-elegant {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
}

.feature-elegant i {
    color: #28a745;
    font-size: 18px;
}

.feature-elegant span {
    font-size: 15px;
    color: var(--text-main);
}

.btn-elegant {
    margin-top: 30px;
    padding: 16px 32px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-elegant-grid {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-elegant-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-elegant-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-elegant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-elegant-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,74,153,0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-elegant-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-overlay i {
    font-size: 48px;
    color: #fff;
}

.service-elegant-card-content {
    padding: 30px;
}

.service-elegant-card-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-elegant-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-elegant-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-elegant-link:hover {
    gap: 12px;
}

.service-elegant-link i {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .service-elegant-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-elegant-reverse .service-elegant-wrapper {
        direction: ltr;
    }
    
    .service-variants {
        grid-template-columns: 1fr;
    }
    
    .services-elegant-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .leistungen-hero h1 {
        font-size: 32px;
    }
    
    .leistungen-hero p {
        font-size: 16px;
    }
    
    .service-elegant-content h2 {
        font-size: 28px;
    }
    
    .service-elegant {
        padding: 60px 0;
    }
}

/* Wunschtermin Wrapper - Elegantes Design */
.wunschtermin-wrapper {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.wunschtermin-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.1);
}

.wunschtermin-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wunschtermin-label i {
    font-size: 20px;
}

.wunschtermin-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.termin-option-card {
    position: relative;
    cursor: pointer;
    border: 2px solid #e0e4e8;
    border-radius: 10px;
    padding: 16px 20px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
}

.termin-option-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.1);
    transform: translateY(-2px);
}

.termin-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.termin-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.termin-option-content i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.termin-option-content span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.termin-option-card input[type="radio"]:checked + .termin-option-content {
    color: var(--primary-color);
}

.termin-option-card input[type="radio"]:checked + .termin-option-content i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.termin-option-card input[type="radio"]:checked + .termin-option-content span {
    color: var(--primary-color);
    font-weight: 700;
}

.termin-option-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f5fa 0%, #ffffff 100%);
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.15);
}

.termin-date-wrapper {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e4e8;
    transition: all 0.3s ease;
}

.termin-date-wrapper.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #f5f5f5;
}

.termin-date-wrapper input[type="date"] {
    width: 100%;
    max-width: 250px;
    padding: 10px 12px;
    border: 2px solid #e0e4e8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.termin-date-wrapper input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
}

.termin-date-wrapper input[type="date"]:hover:not(:disabled) {
    border-color: var(--primary-color);
}

.date-hint {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.termin-flexible-wrapper {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e4e8;
}

.flexible-dates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.flexible-date-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flexible-date-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.flexible-date-group input[type="date"] {
    width: 100%;
    max-width: 250px;
    padding: 10px 12px;
    border: 2px solid #e0e4e8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flexible-date-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
}

.flexible-date-group input[type="date"]:hover {
    border-color: var(--primary-color);
}

.flexible-date-group .date-hint {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .wunschtermin-options {
        grid-template-columns: 1fr;
    }
    
    .wunschtermin-wrapper {
        padding: 20px;
    }
    
    .flexible-dates-grid {
        grid-template-columns: 1fr;
    }
    
    .flexible-date-group input[type="date"],
    .termin-date-wrapper input[type="date"] {
        max-width: 100%;
    }
}

/* Einfaches Kontaktformular */
.simple-contact-form {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.simple-contact-form h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.simple-contact-form .form-group {
    margin-bottom: 15px;
}

.simple-contact-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.simple-contact-form .form-note {
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.simple-contact-form .form-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Gegenstände Modal kleiner und eleganter */
.inventory-modal {
    max-width: 700px !important;
    max-height: 75vh !important;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.inventory-modal-content {
    padding: 25px !important;
}

/* Volume Display - immer sichtbar */
.volume-display {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3);
    transition: transform 0.2s;
}

.volume-display .total {
    font-size: 32px;
    font-weight: bold;
    margin-top: 5px;
    transition: transform 0.2s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.cookie-banner.show {
    transform: translateY(0);
    display: block !important;
}

.cookie-banner[style*="display: none"] {
    display: none !important;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text i {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 5px;
}

.cookie-banner-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cookie-banner-text p {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    min-height: 44px;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #003d7a;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: #f0f0f0;
    color: var(--text-main);
}

.cookie-btn-reject:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
    }
}

/* Additional Services Section */
.additional-services-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-checkbox-item {
    display: block;
    cursor: pointer;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
}

.service-checkbox-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.1);
}

.service-checkbox-item input[type="checkbox"] {
    display: none;
}

.service-checkbox-item input[type="checkbox"]:checked + .service-checkbox-content {
    color: var(--primary-color);
}

.service-checkbox-item input[type="checkbox"]:checked ~ .service-checkbox-content,
.service-checkbox-item:has(input[type="checkbox"]:checked) {
    border-color: var(--primary-color);
    background: #f0f7ff;
}

.service-checkbox-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-checkbox-content i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.service-checkbox-content div {
    flex: 1;
}

.service-checkbox-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-main);
}

.service-checkbox-content span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

/* Leistungen-Sektion vollständig sichtbar */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

/* Accessibility: ARIA Labels und Semantik */
[role="button"],
button,
a[href] {
    min-height: 44px;
    min-width: 44px;
}

/* Performance: Reduce Motion für Nutzer mit Präferenz */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
    }
    
    .logo-text {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }
    
    .header-contact {
        display: none;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .nav-list .btn-cta {
        width: auto;
        margin: 10px 20px;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Mobile Menu Toggle Button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 2px solid var(--primary-color);
        border-radius: 5px;
        cursor: pointer;
        padding: 10px 8px;
        margin-left: 10px;
        position: relative;
    }
    
    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-color);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    .menu-toggle.active {
        border-color: var(--primary-color);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--primary-color);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--primary-color);
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* WhatsApp Floating Button Container */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Form Quick Access Buttons (above WhatsApp) */
.form-quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-quick-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-quick-btn:hover {
    background: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 153, 0.4);
}

.form-quick-btn i {
    font-size: 16px;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Form Quick Access Buttons (below WhatsApp) - Entfernt */
.form-quick-buttons-bottom {
    display: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .form-quick-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .form-quick-buttons {
        gap: 8px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }
    
    .feature-item {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        min-width: unset;
    }
    
    .hero-image {
        display: none;
    }
    
    .simple-contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .row {
        grid-template-columns: 1fr;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .logo-img {
        height: 70px;
        max-width: 70px;
    }
    
    .logo-text {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        margin-bottom: 0;
    }
    
    .why-us-grid,
    .districts-grid,
    .process-steps,
    .prices-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}
