:root {
    --primary-blue: #3b82f6;
    --primary-green: #10b981;
    --accent-blue: #60a5fa;
    --accent-green: #34d399;
    --dark-blue: #1e40af;
    --dark-green: #059669;
    --light-blue: #dbeafe;
    --light-green: #d1fae5;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue-green: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.4);
    --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--gray-800);
    overflow-x: hidden;
    background: linear-gradient(180deg, #eff4ff 0%, #f6fbff 35%, #f9fdfb 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modern Header with Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.logo {
    height: 120px;
    width: auto;
    max-width: 300px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    object-fit: contain;
    border-radius: 12px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo:hover {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 12px 30px rgba(59, 130, 246, 0.5));
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
}

/* Modern Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-list > li > a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
}

.nav-list > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: var(--gradient-blue-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-list > li > a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-list > li > a:hover::before {
    opacity: 1;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 0;
    margin-top: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--gray-800);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-blue-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent);
    padding-left: 2rem;
    color: var(--primary-blue);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.btn-einsatzorte {
    background: var(--gradient-blue-green);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-einsatzorte::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-einsatzorte:hover::before {
    width: 300px;
    height: 300px;
}

.btn-einsatzorte:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-einsatzorte span {
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #3b82f6 50%, #10b981 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('header-bg.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.3), transparent 50%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    position: relative;
}

/* Firmenname ABBASI - Modern und Prominent */
.company-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(4.5rem, 14vw, 9rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(120deg, #f8fafc 0%, #dbeafe 40%, #bbf7d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out, companyGlow 4s ease-in-out infinite;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

@keyframes companyGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

/* Moderne Unterstreichung unter "nicht teuer sein" */
.hero-underline {
    position: relative;
    display: inline-block;
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

.hero-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--white) 20%, var(--white) 80%, transparent 100%);
    border-radius: 2px;
    opacity: 0.9;
    animation: underlineGrow 1s ease-out 1.2s both;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

@keyframes underlineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-blue-green);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Hero CTA – moderne Daueranimation */
#hero-kontakt-btn {
    animation: fadeInUp 1s ease-out 0.4s both, heroCtaPulse 3s ease-in-out 1.2s infinite;
}

@keyframes heroCtaPulse {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    }
    25% {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 16px 55px rgba(59, 130, 246, 0.45);
    }
    50% {
        transform: translateY(0) scale(1.02);
        box-shadow: 0 14px 50px rgba(16, 185, 129, 0.45);
    }
    75% {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 18px 60px rgba(59, 130, 246, 0.5);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    }
}

/* Modern Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-blue-green);
    border-radius: 5px;
}

/* Modern Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue-green);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

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

.service-card p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Modern Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-blue-green);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

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

/* Service Items */
.service-section {
    margin-bottom: 5rem;
}

.service-section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-900);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover {
    border-color: var(--primary-green);
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

.service-item-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-item:hover .service-item-icon {
    transform: scale(1.3) rotate(15deg);
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--gray-900);
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Modern Map */
.map-container {
    margin-bottom: 4rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.1);
    background: var(--white);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(16, 185, 129, 0.03));
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
}

.interactive-map {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
    position: relative;
    cursor: grab;
    z-index: 2;
    border-radius: 24px;
}

.interactive-map:active {
    cursor: grabbing;
}

/* Leaflet Modern Styles */
.leaflet-container {
    font-family: 'Inter', sans-serif;
    border-radius: 24px;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
}

.leaflet-tile-container img {
    border-radius: 0;
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    transition: filter 0.3s ease;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-blue) !important;
    border: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leaflet-control-zoom a:hover {
    background: var(--gradient-blue-green) !important;
    color: white !important;
    transform: scale(1.05);
}

.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 16px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(59, 130, 246, 0.1) !important;
}

.leaflet-popup-tip {
    background: white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Modern PLZ Checker */
.plz-checker {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.plz-checker h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-size: 1.75rem;
    font-weight: 700;
}

.plz-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

#plz-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

#plz-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.plz-result {
    padding: 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.plz-result.success {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.plz-result.error {
    background: linear-gradient(135deg, #fee2e2, #ef4444);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}


/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-blue-green);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* About Section */
.about-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

.values-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.values-list li:hover {
    padding-left: 3rem;
    color: var(--primary-blue);
}

.values-list li:hover::before {
    transform: scale(1.3);
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--gray-900);
    font-size: 1.75rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Datenschutz Checkbox im Formular */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-blue);
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.checkbox-label span {
    flex: 1;
}

.datenschutz-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.datenschutz-link:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.checkbox-label:has(input:invalid) {
    color: #ef4444;
}

.checkbox-label:has(input:invalid) .datenschutz-link {
    color: #ef4444;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 250px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    object-fit: contain;
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-logo-img:hover {
    transform: scale(1.1) translateY(-3px);
    filter: drop-shadow(0 8px 25px rgba(16, 185, 129, 0.6));
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-column a:hover {
    color: var(--primary-green);
    opacity: 1;
    padding-left: 5px;
}

.contact-email {
    white-space: nowrap;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-green);
}

.footer-email {
    white-space: nowrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 3% auto;
    padding: 3rem;
    border-radius: 24px;
    max-width: 800px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) var(--gray-100);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--gray-900);
    background: var(--gray-100);
    transform: rotate(90deg);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 4rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    max-width: 400px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-weight: 500;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: var(--primary-green);
    color: var(--white);
}

.notification-error {
    background: #ef4444;
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-list a {
        display: block;
        padding: 1.5rem 0;
        font-size: 1.2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        margin: 0;
        padding-left: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .logo {
        height: 90px;
        max-width: 220px;
        padding: 6px;
    }

    .footer-logo-img {
        height: 80px;
        max-width: 200px;
        padding: 8px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion Styles */
.accordion-toggle {
    width: 100%;
    background: var(--gradient-blue-green);
    color: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.accordion-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.accordion-toggle:hover::before {
    left: 100%;
}

.accordion-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.accordion-toggle h2 {
    margin: 0;
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--white);
}

.accordion-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 2rem;
    background: transparent;
}

.accordion-content.active {
    max-height: 10000px;
    padding: 3rem 2rem;
}

.accordion-content .section-title {
    display: none;
}

/* Content Modals - Modern Design */
.content-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.content-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
}

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

.modal-content-wrapper {
    background: var(--white);
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 24px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-modal .modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-modal .modal-close:hover {
    color: var(--gray-900);
    background: var(--gray-100);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.content-modal .section-title {
    margin-top: 0;
    margin-bottom: 2rem;
}

/* Navigation Modal Buttons */
.nav-modal-btn {
    cursor: pointer;
}

/* Modern Custom Markers for Map */
.custom-map-marker {
    background: transparent !important;
    border: none !important;
    width: 32px !important;
    height: 32px !important;
    position: relative;
}

/* Marker Animation wird in map.js inline definiert */

/* Responsive Modals */
@media (max-width: 768px) {
    .content-modal.active {
        padding: 1rem;
    }
    
    .modal-content-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
        max-height: 95vh;
    }
    
    .content-modal .modal-close {
        right: 1rem;
        top: 1rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* Datenschutz-Overlay - blockiert die gesamte Seite */
.datenschutz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.datenschutz-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Datenschutz-Banner (erscheint vor Cookie-Banner) */
.datenschutz-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--primary-blue);
}

.datenschutz-banner.show {
    transform: translateY(0);
}

.datenschutz-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.datenschutz-banner-text {
    flex: 1;
    min-width: 300px;
}

.datenschutz-banner-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 700;
}

.datenschutz-banner-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.datenschutz-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.datenschutz-banner-buttons .btn-primary {
    margin: 0;
}

/* Cookie-Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 700;
}

.cookie-banner-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cookie-accept {
    background: var(--gradient-blue-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-cookie-necessary {
    background: var(--white);
    color: var(--gray-800);
    border: 2px solid var(--gray-300);
}

.btn-cookie-necessary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-cookie-settings:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-settings-content {
    padding: 1rem 0;
}

.cookie-settings-content > p {
    margin-bottom: 2rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.cookie-category-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gradient-blue-green);
}

.cookie-toggle input:focus + .cookie-toggle-slider {
    box-shadow: 0 0 1px var(--primary-blue);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--gray-400);
    cursor: not-allowed;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 700;
}

.cookie-category-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cookie-settings-buttons .btn-primary {
    flex: 1;
    min-width: 200px;
}

.cookie-settings-buttons .btn-cookie-accept {
    flex: 1;
    min-width: 200px;
}

/* Impressum Content */
.impressum-content {
    padding: 1rem 0;
}

.impressum-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-weight: 700;
}

.impressum-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.impressum-content h2:first-of-type {
    margin-top: 1rem;
}

.impressum-content p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

.impressum-content a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: var(--primary-blue-dark);
}

/* Datenschutz Content */
.datenschutz-content {
    padding: 1rem 0;
}

.datenschutz-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
    font-weight: 800;
    border-bottom: 3px solid var(--primary-blue);
    padding-bottom: 1rem;
}

.datenschutz-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-weight: 700;
}

.datenschutz-content h2:first-of-type {
    margin-top: 0;
}

.datenschutz-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.datenschutz-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.datenschutz-content p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.datenschutz-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.datenschutz-content li {
    margin-bottom: 0.5rem;
}

.datenschutz-content strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Responsive Datenschutz & Cookie Banner */
@media (max-width: 768px) {
    .datenschutz-banner,
    .cookie-banner {
        padding: 1.5rem;
    }
    
    .datenschutz-banner-content,
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .datenschutz-banner-buttons,
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .datenschutz-banner-buttons .btn-primary,
    .btn-cookie {
        width: 100%;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-toggle {
        align-self: flex-start;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-buttons .btn-primary,
    .cookie-settings-buttons .btn-cookie-accept {
        width: 100%;
    }
}

/* Bewertungssystem Styles */
.floating-bewertung-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.floating-bewertung-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.floating-bewertung-btn .bewertung-icon {
    font-size: 1.5rem;
    animation: star-twinkle 2s ease-in-out infinite;
}

.floating-bewertung-btn .bewertung-text {
    font-weight: 700;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(59, 130, 246, 0.6);
    }
}

@keyframes star-twinkle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Bewertungs-Modal */
.bewertung-form {
    padding: 1rem 0;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
    font-size: 3rem;
}

.star-rating .star {
    cursor: pointer;
    color: #d1d5db;
    transition: all 0.2s ease;
    user-select: none;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #fbbf24;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.rating-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.bewertung-hinweis {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* Bewertungen Section */
#bewertungen-section {
    padding: 5rem 0;
}

.bewertungen-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 20px;
}

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

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.bewertung-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bewertung-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.bewertung-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bewertung-stars {
    font-size: 1.5rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

.bewertung-datum {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.bewertung-kommentar {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.bewertung-anonym {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.no-bewertungen {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
    font-size: 1.1rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.notification-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Responsive Bewertungen */
@media (max-width: 768px) {
    .floating-bewertung-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .floating-bewertung-btn .bewertung-text {
        display: none;
    }
    
    .bewertungen-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .bewertungen-grid {
        grid-template-columns: 1fr;
    }
    
    .star-rating {
        font-size: 2.5rem;
    }
}

