/* Grundlegende Reset und globale Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e8b53c;
    --primary-dark: #d6a029;
    --primary-light: #f8e4b3;
    --light-color: #ffffff;
    --dark-color: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    --text-color: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 10px;
    --border-radius-sm: 6px;
    --border-radius-lg: 14px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 5px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* LOGO STYLING */
.logo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(232, 181, 60, 0.2);
    overflow: hidden;
}

/* Ihr Logo wird hier erscheinen */
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.logo-text .sub {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark-color);
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.mobile-toggle:hover {
    background-color: var(--gray-light);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    bottom: 0;
    left: 0;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

/* Hero Bereich */
.hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 900px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--light-color);
    text-align: center;
    padding: 80px 16px 40px;
    position: relative;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 80px 16px 30px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.3rem;
    }
}

.hero-highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: var(--primary-color);
    bottom: 4px;
    left: 0;
    opacity: 0.3;
    z-index: -1;
    border-radius: 3px;
}

/* Google Bewertungen - MOBILE FIX */
.google-reviews-hero {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.google-reviews-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sterne nebeneinander auf Mobile */
.stars {
    color: var(--primary-color);
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    gap: 1px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .stars {
        font-size: 0.9rem;
    }
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-color);
    line-height: 1;
}

.rating-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .rating-text {
        font-size: 0.85rem;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 181, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(232, 181, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 181, 60, 0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-color);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(232, 181, 60, 0.25);
    width: fit-content;
    min-width: 160px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 181, 60, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

/* TÜV Info Box */
.tuv-box {
    background: linear-gradient(135deg, rgba(232, 181, 60, 0.1), rgba(214, 160, 41, 0.05));
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tuv-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.tuv-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 700;
}

.tuv-content p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* TÜV Schedule */
.tuv-schedule {
    background: linear-gradient(135deg, rgba(232, 181, 60, 0.05), rgba(214, 160, 41, 0.05));
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(232, 181, 60, 0.2);
}

.tuv-schedule h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.tuv-day {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.tuv-day:last-child {
    margin-bottom: 0;
}

.tuv-day h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tuv-day p {
    color: var(--gray-dark);
    margin: 0;
}

/* Sektionen */
section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 60px;
    }
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
        padding-bottom: 16px;
    }
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-dark);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .section-title p {
        font-size: 1.2rem;
        margin-top: 16px;
    }
}

/* Startseite Inhalte */
.intro-section {
    padding: 60px 0 40px;
    background-color: var(--light-color);
}

@media (min-width: 768px) {
    .intro-section {
        padding: 80px 0 60px;
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }
}

.intro-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

@media (min-width: 768px) {
    .intro-card {
        padding: 40px 30px;
    }
}

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

.intro-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 6px 16px rgba(232, 181, 60, 0.25);
}

.intro-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.intro-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Kontakt auf Startseite */
.contact-section-home {
    background-color: var(--gray-light);
    padding: 60px 0;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .contact-section-home {
        padding: 80px 0;
        margin-top: 60px;
    }
}

.contact-home-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-home-container {
        flex-direction: row;
        gap: 50px;
    }
}

.contact-home-info {
    flex: 1;
}

.contact-home-form {
    flex: 1;
    background: var(--light-color);
    padding: 30px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .contact-home-form {
        padding: 40px 35px;
    }
}

.contact-home-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-home-info p {
    color: var(--gray-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.contact-home-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-home-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.1rem;
}

.contact-home-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-home-text p {
    color: var(--gray-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

@media (min-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
}

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

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--gray-light);
}

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

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* Leistungen */
.services {
    background-color: var(--light-color);
}

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

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

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

.service-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-light), rgba(232, 181, 60, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-icon {
        height: 160px;
    }
}

.service-content {
    padding: 24px 20px;
}

@media (min-width: 768px) {
    .service-content {
        padding: 30px 24px;
    }
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

@media (min-width: 768px) {
    .service-content h3 {
        font-size: 1.4rem;
    }
}

.service-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Über Uns */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .about-content {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }
}

.about-text {
    order: 2;
}

@media (min-width: 992px) {
    .about-text {
        order: 1;
        flex: 1;
    }
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-text h3 {
        font-size: 2rem;
    }
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(232, 181, 60, 0.05), rgba(214, 160, 41, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.highlight-box p {
    font-style: italic;
    margin-bottom: 0;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 500;
}

.about-image {
    order: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    .about-image {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .about-image {
        order: 2;
        flex: 1;
        height: 450px;
    }
}

/* Ihr Bild wird hier erscheinen */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Kontakt */
.contact {
    background-color: var(--gray-light);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        gap: 50px;
    }
}

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

@media (min-width: 768px) {
    .contact-info {
        gap: 25px;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(232, 181, 60, 0.25);
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-details p {
    color: var(--gray-dark);
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-form {
    flex: 1;
    background: var(--light-color);
    padding: 30px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px 35px;
    }
}

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

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

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background-color: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 181, 60, 0.1);
    background-color: var(--light-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Google Maps */
.map-container {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
    position: relative;
}

@media (min-width: 768px) {
    .map-container {
        height: 400px;
        margin-top: 60px;
    }
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

@media (min-width: 768px) {
    footer {
        padding: 70px 0 30px;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 50px;
    }
}

.footer-logo-container {
    flex: 1;
    min-width: 100%;
}

@media (min-width: 768px) {
    .footer-logo-container {
        min-width: 300px;
        flex: 2;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-placeholder {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 18px;
    font-weight: 800;
    overflow: hidden;
}

/* Ihr Logo im Footer */
.footer-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .main {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-color);
    line-height: 1.2;
}

.footer-logo-text .sub {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-about p {
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links, .footer-contact, .footer-legal {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3, .footer-legal h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-links h3::after, .footer-contact h3::after, .footer-legal h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-color);
    width: 16px;
    font-size: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(232, 181, 60, 0.3);
    border: none;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(232, 181, 60, 0.5);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

@media (min-width: 768px) {
    .modal-content {
        padding: 40px 35px;
    }
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.modal-content h4 {
    font-size: 1.1rem;
    margin: 20px 0 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.modal-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary-color);
    background-color: var(--gray-light);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background-color: var(--gray-light);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

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

.breadcrumb span {
    color: var(--gray-dark);
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        display: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        margin-left: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 20px;
        width: 100%;
    }
    
    .nav-links a:hover {
        background-color: rgba(232, 181, 60, 0.05);
    }
    
    /* Logo kleiner auf Mobile */
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-text .main {
        font-size: 1rem;
    }
    
    .logo-text .sub {
        font-size: 0.7rem;
    }
}