/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

:root {
    /* Light Mode Colors */
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #1e293b;
    --light-bg: #f8fafc;
    --dark-bg: #0f172a;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --hover-bg: #f1f5f9;
    --zoom-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    /* Dark Mode Colors */
    --primary-color: #60a5fa;
    --secondary-color: #3b82f6;
    --accent-color: #93c5fd;
    --text-color: #e2e8f0;
    --light-bg: #0f172a;
    --dark-bg: #020617;
    --white: #1e293b;
    --card-bg: #1e293b;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --hover-bg: #334155;
    --input-bg: #1e293b;
    --input-border: rgba(255, 255, 255, 0.1);
    --input-text: #e2e8f0;
    --input-placeholder: rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
    transition: var(--zoom-transition);
    transform-origin: top center;
}

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

/* Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.375rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}

.btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
}

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

/* Top Bar */
.top-bar {
    background: var(--white);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 990;
    font-size: 0.875rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 0.5rem;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px var(--shadow-color);
    z-index: 991;
    height: 56px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    top: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    order: -1;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-brand img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

/* Hamburger Menu */
.hamburger-menu {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-menu:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.hamburger-menu .bar {
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger-menu:hover .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 24px;
}

.hamburger-menu:hover .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu:hover .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 24px;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 24px;
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 24px;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(56px + 56px) 0 0 0;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85));
    z-index: 1;
}

.video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: center;
}

.hero-section .lead {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.hero-buttons .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.hero-buttons .btn-primary:hover i {
    transform: translateY(-1px);
}

.hero-buttons .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-outline:hover i {
    transform: translateX(3px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(-50%) translateY(-5px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

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

[data-theme="dark"] .scroll-down {
    color: var(--accent-color);
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .scroll-down:hover {
    color: var(--primary-color);
    opacity: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 15vh 0 0 0;
    }
    
    .scroll-down {
        bottom: 20px;
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .video-control {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
    border-color: var(--primary-color);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--card-bg);
    color: var(--text-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--input-placeholder);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 0 0.5rem;
    font-size: 0.95rem;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    background: var(--card-bg);
    padding: 0 0.5rem;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-brand h3 img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-brand h3 img:hover {
    transform: scale(1.05);
}

.brand-description {
    color: #f8fafc;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .footer-social a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

[data-theme="dark"] .footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #f8fafc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-right: 45px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-links a.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-links a.new {
    position: relative;
}

.footer-links a.new::after {
    content: 'Neu';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.footer-links a.join-now::after {
    content: 'Join Now';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.footer-links a.join-now:hover::after {
    background: var(--secondary-color);
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-middle {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-legal a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-languages {
    display: flex;
    gap: 0.5rem;
}

.footer-languages .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-languages .btn:hover,
.footer-languages .btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        height: 56px;
    }

    .hamburger-menu {
        height: 40px;
        width: 40px;
    }

    .mobile-nav {
        top: 56px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        gap: 0.5rem;
    }

    .footer-legal a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .footer-payment {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .payment-methods {
        gap: 1rem;
    }

    .payment-methods i {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .top-bar-content {
        flex-direction: row;
        gap: 0.25rem;
        justify-content: space-between;
    }

    .top-bar-left {
        width: auto;
        justify-content: flex-start;
        gap: 0.25rem;
    }

    .top-bar-right {
        width: auto;
        justify-content: flex-end;
        gap: 0.25rem;
        flex-shrink: 0;
        margin-left: 0.25rem;
    }

    .theme-toggle {
        margin-left: 0.25rem;
        order: 2;
    }

    #easyLanguage {
        order: 1;
    }

    .zoom-controls {
        padding: 0;
        gap: 0;
        width: auto;
        min-width: unset;
        display: inline-flex;
        border: none;
        background: none;
        box-shadow: none;
    }

    .zoom-controls .btn {
        width: 32px;
        height: 32px;
        padding: 0;
        flex-shrink: 0;
        border-radius: 4px;
        margin: 0;
    }

    .zoom-controls .btn + .btn {
        margin-left: 0;
    }

    .zoom-level {
        display: none;
        width: 0;
        margin: 0;
        padding: 0;
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .zoom-controls.expanded {
        flex-direction: column;
        width: 160px;
        padding: 0.5rem;
        background: var(--light-bg);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        gap: 0.25rem;
    }

    .zoom-controls.expanded .zoom-level {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        order: 2;
        position: static;
        opacity: 1;
        pointer-events: auto;
    }

    .zoom-controls.expanded .btn {
        order: 1;
    }

    #easyLanguage {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    #easyLanguage span {
        display: inline;
    }

    #easyLanguage i {
        margin-right: 0.3rem;
        font-size: 1.1rem;
    }

    .language-selector {
        display: none;
    }
    
    .top-bar-divider:last-child {
        display: none;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
    }

    .theme-toggle i {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    #easyLanguage {
        padding: 0.5rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #easyLanguage span {
        display: none;
    }

    #easyLanguage i {
        margin: 0;
        font-size: 1.1rem;
    }
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    padding: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
}

.mobile-nav-brand img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.mobile-nav-brand:hover img {
    transform: scale(1.05);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.mobile-nav-close:hover {
    color: var(--primary-color);
    background: var(--light-bg);
    transform: rotate(90deg);
}

.mobile-nav-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
    border-radius: 8px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem;
    position: sticky;
    bottom: 0;
    z-index: 2;
}

.mobile-nav-footer {
    margin-top: 1rem;
    padding-top: 1rem;
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mobile-social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

[data-theme="dark"] .mobile-nav {
    background: var(--dark-bg);
}

[data-theme="dark"] .mobile-nav-header {
    background: var(--dark-bg);
}

[data-theme="dark"] .mobile-nav-link {
    color: #f8fafc;
}

[data-theme="dark"] .mobile-nav-link:hover,
[data-theme="dark"] .mobile-nav-link.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .mobile-nav-close {
    color: #f8fafc;
}

[data-theme="dark"] .mobile-nav-close:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .mobile-social-links a {
    color: #f8fafc;
}

[data-theme="dark"] .mobile-social-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .hamburger-menu {
        display: flex;
        z-index: 10000;
    }

    .navbar-menu {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .map-section {
        margin-top: 2rem;
    }

    .map-container {
        width: 95%;
        height: 350px;
        border-radius: 0.5rem;
    }
}

@media (max-width: 576px) {
    .map-container {
        width: 100%;
        height: 300px;
        border-radius: 0;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-color-dark);
    transform: translateY(-5px);
}

/* Dark Mode Adjustments */
[data-theme="dark"] .scroll-to-top {
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .scroll-to-top:hover {
    background: var(--primary-color-dark);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Zoom Controls */
.zoom-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--light-bg);
    padding: 0.25rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.zoom-controls .btn {
    width: 28px;
    height: 28px;
    padding: 0;
    min-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.zoom-controls .btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zoom-controls .btn:active:not(:disabled) {
    transform: translateY(0);
}

.zoom-controls .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.zoom-level {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    width: 45px;
    text-align: center;
    user-select: none;
    background: var(--white);
    padding: 0.25rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 0.25rem;
}

/* Leichte Sprache Button */
#easyLanguage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

#easyLanguage:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#easyLanguage.active {
    background: var(--primary-color);
    color: var(--white);
}

#easyLanguage i {
    font-size: 1.1rem;
}

/* Leichte Sprache Styles */
.easy-language {
    font-size: 1.2em;
    line-height: 1.8;
}

.easy-language h1,
.easy-language h2,
.easy-language h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.easy-language p {
    margin-bottom: 1.5em;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://source.unsplash.com/random/1920x1080/?office') center/cover;
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    margin-top: 56px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1rem;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero .lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

.contact-list strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-list p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.contact-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.contact-form-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-form-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-intro {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--card-bg);
    color: var(--text-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.contact-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-form .btn-primary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
}

    .contact-card,
    .contact-form-card {
        padding: 2rem;
}
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-list li {
        margin-bottom: 1.25rem;
}

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-card,
    .contact-form-card {
        padding: 1.25rem;
    }
    
    .contact-list li {
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* Legal Page Styles */
.legal-section {
    padding: 2rem 0;
    background-color: var(--light-bg);
    color: var(--text-color);
    margin-top: calc(56px + 56px);
}

.legal-section-content {
    max-width: 100%;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.legal-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.legal-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
    font-weight: 600;
    }

    .legal-card {
    background: var(--card-bg);
    border-radius: 8px;
        padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 1rem 0;
    }

    .legal-card {
        padding: 1.5rem;
    }

    .legal-section h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .legal-section {
        padding: 0.75rem 0;
    }

    .legal-card {
        padding: 1rem;
        border-radius: 6px;
    }

    .legal-section h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .legal-section h2 {
        font-size: 1.35rem;
        margin: 1.75rem 0 0.75rem;
    }

    .legal-section h3 {
        font-size: 1.15rem;
        margin: 1.25rem 0 0.5rem;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    }

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    }

.theme-toggle i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: absolute;
    }

.theme-toggle .fa-sun {
    opacity: 0;
    transform: translateY(20px);
    }

.theme-toggle .fa-moon {
    opacity: 1;
    transform: translateY(0);
    }

[data-theme="dark"] .theme-toggle {
    background: var(--card-bg);
    border-color: var(--border-color);
    color: var(--accent-color);
    }

[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    }

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0);
    }

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-20px);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    position: sticky;
    top: calc(56px + 56px);
    z-index: 980;
    margin-bottom: 0;
    min-height: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 2rem;
}

.breadcrumb-nav::-webkit-scrollbar {
    display: none;
}

.breadcrumb-list {
    display: flex;
    gap: 0.25rem;
    background: var(--white);
    border-radius: 2rem;
    padding: 0.35rem;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    max-width: 100vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-shadow: 0 4px 16px rgba(30,58,138,0.08), 0 1px 2px rgba(30,58,138,0.04);
    border: 2px solid rgba(30,58,138,0.1);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.breadcrumb-list::-webkit-scrollbar {
    display: none;
}

.breadcrumb-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.28rem;
    padding: 0.65rem 1.8rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    white-space: nowrap;
    margin: 0 0.35rem;
}

.breadcrumb-link:first-child {
    margin-left: 0;
}

.breadcrumb-link:last-child {
    margin-right: 0;
}

.breadcrumb-link.active {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(30,58,138,0.15);
    z-index: 1;
}

.breadcrumb-link:hover:not(.active) {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-1px);
}

/* Dark Mode Styles for Breadcrumb */
[data-theme="dark"] .breadcrumb-list {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .breadcrumb-link {
    color: var(--accent-color);
}

[data-theme="dark"] .breadcrumb-link.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .breadcrumb-link:hover:not(.active) {
    background: var(--secondary-color);
    color: var(--white);
}

/* Anpassung wenn Top-Bar verschwindet */
.top-bar.hidden + .navbar + .legal-section .breadcrumb-nav {
    top: 64px; /* Nur Navbar-Höhe */
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        top: 100px;
        padding: 0.25rem;
    }

    .breadcrumb-link {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }
}

/* 404 Error Page */
.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('https://source.unsplash.com/random/1920x1080/?error') center/cover;
    color: var(--white);
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.error-content h1 {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 1rem 0;
    color: var(--white);
}

.error-content p {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.error-actions .btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .error-section {
        padding: 6rem 0 3rem;
    }

    .error-content {
        padding: 1rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Discord Banner */
.discord-banner {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.discord-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://source.unsplash.com/random/1920x1080/?discord') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.discord-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.discord-banner-text {
    flex: 1;
}

.discord-banner-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.discord-banner-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.discord-banner .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.discord-banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--white);
    color: var(--primary-color);
}

.discord-banner .btn i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .discord-banner {
        padding: 2rem 0;
    }

    .discord-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .discord-banner-text h3 {
        font-size: 1.5rem;
    }

    .discord-banner-text p {
        font-size: 1rem;
    }

    .discord-banner .btn {
        width: 100%;
        justify-content: center;
    }
}

[data-theme="dark"] .footer {
    background: var(--dark-bg);
}

[data-theme="dark"] .footer-links h4 {
    color: #ffffff;
}

[data-theme="dark"] .footer-links a {
    color: #f8fafc;
}

[data-theme="dark"] .footer-links a:hover {
    color: #ffffff;
}

[data-theme="dark"] .footer-links a.highlight {
    color: var(--accent-color);
}

[data-theme="dark"] .footer-links a.new::after {
    background: var(--accent-color);
    color: var(--white);
}

[data-theme="dark"] .footer-links a.join-now::after {
    background: var(--primary-color);
    color: var(--white);
}

[data-theme="dark"] .footer-links a.join-now:hover::after {
    background: var(--secondary-color);
}

[data-theme="dark"] .footer-contact h4 {
    color: #ffffff;
}

[data-theme="dark"] .footer-contact li {
    color: #f8fafc;
}

[data-theme="dark"] .footer-contact i {
    color: var(--primary-color);
}

[data-theme="dark"] .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .footer-legal a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .payment-methods i {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .payment-methods i:hover {
    color: var(--white);
}

[data-theme="dark"] .footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .footer-languages .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .footer-languages .btn:hover,
[data-theme="dark"] .footer-languages .btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.mobile-nav-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    margin: 0.5rem 0;
}

.mobile-nav-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .mobile-nav-btn {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .mobile-nav-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

[data-theme="dark"] .hero-section h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .hero-section .lead {
    color: #f8fafc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

[data-theme="dark"] .hero-buttons .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

[data-theme="dark"] .hero-buttons .btn-outline:hover {
    background: #ffffff;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.url-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.url-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.url-item:last-child {
    border-bottom: none;
}

.url-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.url-note {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

[data-theme="dark"] .url-item {
    border-color: var(--border-color);
}

[data-theme="dark"] .url-item a {
    color: var(--text-color);
}

[data-theme="dark"] .url-item a:hover {
    color: var(--accent-color);
}

/* Breadcrumb immer sichtbar, keine Media Query zum Ausblenden mehr! */ 

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    margin: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    color: white;
    position: absolute;
    font-size: 14px;
    line-height: 1;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.2;
    cursor: pointer;
    flex-grow: 1;
    margin: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    margin-left: 0.25rem;
    white-space: nowrap;
}

.checkbox-group a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.checkbox-group a:hover {
    color: var(--secondary-color);
}

.checkbox-group a:hover:after {
    transform: scaleX(1);
}

[data-theme="dark"] .checkbox-group {
    background: var(--dark-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .checkbox-group:hover {
    background: var(--card-bg);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .checkbox-group input[type="checkbox"] {
    border-color: var(--accent-color);
}

[data-theme="dark"] .checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .checkbox-group {
        padding: 1rem;
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.full-width + .form-group.full-width {
    margin-top: 1rem;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.4) saturate(0.8);
}

.map-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.4);
}

[data-theme="dark"] .contact-hero h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .contact-hero .lead {
    color: #f8fafc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}