/* ========================================
   CSS Variables (Schwarz-Weiß-Gold Farbpalette)
   ======================================== */
:root {
    /* Primary Colors */
    --color-primary: #1b1b1b;
    --color-surface-primary: #ffffff;
    --color-surface-secondary: #fafafa;
    
    /* Gold Tones */
    --color-gold-light: #fff4cc;
    --color-gold-medium: #ffdb58;
    --color-gold-dark: #d4af37;
    
    /* Legacy variables für Kompatibilität - jetzt alle Gold */
    --color-purple-light: #ffdb58;
    --color-purple-dark: #d4af37;
    
    /* Accent Colors */
    --color-accent-gold: #d4af37;
    --color-accent-orange: #d4af37;
    
    /* Grays */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    background-color: var(--color-surface-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-600);
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.section-light {
    background-color: var(--color-surface-primary);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.section-light > .container {
    position: relative;
    z-index: 1;
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-surface-primary);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.section-dark > .container {
    position: relative;
    z-index: 1;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--color-surface-primary);
}

.section-secondary {
    background-color: var(--color-surface-secondary);
    position: relative;
}

.section-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.section-secondary > .container,
.section-secondary > .berufsfelder-slider {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ========================================
   Background Shapes
   ======================================== */
.hero-bg-shapes,
.section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.15;
    filter: blur(60px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-gold-light);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-gold);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--color-gold-medium);
    top: 50%;
    left: 10%;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: var(--color-gold-light);
    top: -150px;
    left: -150px;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: var(--color-accent-gold);
    bottom: -100px;
    right: 10%;
}

.shape-6 {
    width: 450px;
    height: 450px;
    background: var(--color-gold-medium);
    top: 20%;
    right: -100px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-gray-200);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(27, 27, 27, 0.12);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

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

.nav-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
}

.nav-menu-content {
    display: contents;
}

.nav-menu-content li {
    list-style: none;
}

.nav-menu-social {
    display: none;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

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

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

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(244, 224, 157, 0.3);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4e09d 0%, #d4af37 50%, #f4e09d 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 224, 157, 0.05) 100%);
    color: var(--color-primary);
    border: 2px solid var(--color-accent-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 224, 157, 0.1) 100%);
    border-color: var(--color-gold-dark);
    color: var(--color-gold-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.section-dark .btn-secondary {
    color: var(--color-surface-primary);
    border: 2px solid var(--color-accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 224, 157, 0.08) 100%);
}

.section-dark .btn-secondary:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.btn-text {
    padding: 0.5rem 1rem;
    color: var(--color-gray-600);
    background: transparent;
    border: none;
}

.btn-text:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(27, 27, 27, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-nav {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: var(--spacing-xl) 0 var(--spacing-3xl);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.673) 0%, rgba(250, 250, 250, 0.95) 100%),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=900&fit=crop') center/cover fixed;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gray-600);
}

.hero-bullets {
    margin-bottom: var(--spacing-lg);
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-700);
}

.hero-bullets svg {
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.hero-trust svg {
    color: var(--color-primary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 3px solid rgba(27, 27, 27, 0.1);
    transition: all var(--transition-normal);
}

.hero-image img:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* ========================================
   Cards Grid
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

/* Über uns Section - 4 Karten in einer Zeile */
#ueber-uns .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-2xl);
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.95) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-gray-200);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 27, 27, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="rgba(27,27,27,0.01)" width="100" height="100"/><circle fill="rgba(27,27,27,0.02)" cx="50" cy="50" r="40"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(27, 27, 27, 0.12);
    border-color: rgba(27, 27, 27, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 0.8) 100%);
}

.section-dark .card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.section-dark .card::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="rgba(255,255,255,0.02)" width="100" height="100"/><circle fill="rgba(255,255,255,0.03)" cx="50" cy="50" r="40"/></svg>');
}

.section-dark .card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(244, 224, 157, 0.4);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.card:hover .card-icon::before {
    left: 100%;
    top: 100%;
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.section-dark .card p {
    color: var(--color-gray-300);
}

/* ========================================
   Process Timeline
   ======================================== */
.process-timeline {
    margin-top: var(--spacing-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.4) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(27, 27, 27, 0.08);
}

.process-timeline h3 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-gray-700) 100%);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 2px solid rgba(244, 224, 157, 0.5);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: var(--spacing-xs);
}

.timeline-content h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.timeline-content p {
    font-size: 0.9375rem;
}

/* ========================================
   Ideal Box
   ======================================== */
.ideal-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 224, 157, 0.08) 100%),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1200&h=400&fit=crop') center/cover;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-2xl);
    border: 3px solid rgb(212, 175, 55);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.ideal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.92) 0%, rgba(27, 27, 27, 0.88) 100%);
    z-index: 0;
}

.ideal-box > * {
    position: relative;
    z-index: 1;
}

.ideal-box h3 {
    margin-bottom: var(--spacing-md);
}

.ideal-box ul {
    display: grid;
    gap: var(--spacing-sm);
}

.ideal-box li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.ideal-box li::before {
    content: '✓';
    color: var(--color-surface-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ========================================
   Accordion
   ======================================== */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Scrollbar für Stellenangebote wenn mehr als 6 Jobs */
#stellenangebote .accordion {
    max-height: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(250, 250, 250, 0.3) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 769px) {
    #stellenangebote .accordion {
        max-height: 600px;
        overflow-y: auto;
        padding-right: var(--spacing-lg);
    }
    
    /* Custom Scrollbar Design */
    #stellenangebote .accordion::-webkit-scrollbar {
        width: 10px;
    }
    
    #stellenangebote .accordion::-webkit-scrollbar-track {
        background: rgba(27, 27, 27, 0.08);
        border-radius: var(--radius-full);
    }
    
    #stellenangebote .accordion::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--color-gray-700) 0%, var(--color-primary) 100%);
        border-radius: var(--radius-full);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    #stellenangebote .accordion::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-gray-900) 100%);
    }
}

.accordion-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.92) 100%);
    border: 2px solid rgba(27, 27, 27, 0.12);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-gray-800) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.accordion-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.02) 0%, rgba(27, 27, 27, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.accordion-item:hover::before,
.accordion-item.active::before {
    opacity: 1;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(27, 27, 27, 0.15);
    border-color: rgba(27, 27, 27, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 0.9) 100%);
    transform: translateY(-2px);
}

.accordion-item.active {
    border-color: rgba(27, 27, 27, 0.3);
    box-shadow: 0 6px 25px rgba(27, 27, 27, 0.12);
}

.accordion-header {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    cursor: pointer;
    background-color: transparent;
    border: none;
    text-align: left;
    transition: all var(--transition-fast);
    min-height: 60px;
    position: relative;
    z-index: 1;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.04) 0%, rgba(27, 27, 27, 0.02) 100%);
}

.accordion-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
}

.accordion-title h3 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--color-primary);
    font-weight: 700;
}

/* Desktop/Tablet: Badge neben Titel */
@media (min-width: 769px) {
    .accordion-title {
        flex-direction: row;
        align-items: center;
    }
    
    .accordion-title .badge-new {
        margin-left: var(--spacing-sm);
    }
}

.accordion-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 100%);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.badge-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.5);
    font-weight: 700;
    border: 2px solid rgba(244, 224, 157, 0.6);
    transition: all var(--transition-normal);
}

.badge-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.7);
}

.job-badges {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-top: var(--spacing-xs);
}

/* Job Preview für Mobile - standardmäßig versteckt */
.job-preview-mobile {
    display: none;
    width: 100%;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.job-preview-mobile .preview-label {
    display: block;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-2xs);
}

.job-preview-mobile .preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-gray-600);
}

.meta-date {
    color: var(--color-gray-400);
    font-size: 0.8125rem;
    font-style: italic;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    color: var(--color-primary);
    position: absolute;
    right: var(--spacing-lg);
    top: var(--spacing-md);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(250, 250, 250, 0.3) 100%);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-content > div {
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
}

.accordion-content p,
.accordion-content ul,
.accordion-content h4 {
    padding: 0 var(--spacing-lg) var(--spacing-sm);
}

.accordion-item.active .accordion-content {
    border-top: 1px solid rgba(27, 27, 27, 0.1);
}

.accordion-content p:first-child {
    padding-top: 0;
}

.accordion-content p:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
}

.job-intro {
    font-size: 1rem;
    color: var(--color-gray-700);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.04) 0%, rgba(27, 27, 27, 0.02) 100%);
    padding: var(--spacing-md) var(--spacing-lg);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 500;
}

.job-details {
    margin-bottom: var(--spacing-md);
}

.job-details h4 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.job-details h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-lg);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
}

.job-details ul {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.job-details li {
    list-style: disc;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-xs);
}

.job-cta-text {
    font-style: italic;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.job-cta-wrapper {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.03) 0%, rgba(27, 27, 27, 0.01) 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-top: 2px solid rgba(27, 27, 27, 0.1);
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-200);
}

/* ========================================
   Tabs
   ======================================== */
.ablauf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.ablauf-image {
    position: sticky;
    top: 100px;
    align-self: center;
}

.ablauf-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(27, 27, 27, 0.1);
    transition: all var(--transition-normal);
}

.ablauf-image img:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    transform: scale(1.02);
}

.tabs {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(250, 250, 250, 0.5) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(27, 27, 27, 0.1);
    backdrop-filter: blur(10px);
}

.tabs-header {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    border-bottom: 2px solid rgba(27, 27, 27, 0.12);
    justify-content: center;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.03) 0%, transparent 100%);
    padding: var(--spacing-sm);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tab-button {
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    color: var(--color-gray-600);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    position: relative;
    bottom: -2px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.tab-button:hover {
    color: var(--color-primary);
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.05) 0%, transparent 100%);
}

.tab-button.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.08) 0%, rgba(27, 27, 27, 0.02) 100%);
    box-shadow: 0 -4px 15px rgba(27, 27, 27, 0.08);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

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

.process-steps {
    display: grid;
    gap: var(--spacing-lg);
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.35);
    border: 2px solid rgba(244, 224, 157, 0.4);
}

.step-content h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.step-content p {
    font-size: 0.9375rem;
    margin: 0;
}

/* ========================================
   Founder Box
   ======================================== */
.founder-box {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    background: linear-gradient(135deg, rgba(255, 244, 204, 0.9) 0%, rgba(255, 219, 88, 0.15) 100%),
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1200&h=600&fit=crop') center/cover;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-2xl);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    border: 2px solid rgb(212, 175, 55);
    position: relative;
    overflow: hidden;
}

.founder-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 244, 204, 0.6) 100%);
    z-index: 0;
}

.founder-box > * {
    position: relative;
    z-index: 1;
}

.founder-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.founder-content h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.founder-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.founder-bio {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.7;
}


/* ========================================
   Berufsfelder - Infinite Scroll Ticker
   ======================================== */
.berufsfelder-slider {
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.berufsfelder-slider::before,
.berufsfelder-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.berufsfelder-slider::before {
    left: 0;
    background: linear-gradient(to right, 
                                rgba(250, 250, 250, 1) 0%, 
                                rgba(250, 250, 250, 0.8) 50%,
                                transparent 100%);
}

.berufsfelder-slider::after {
    right: 0;
    background: linear-gradient(to left, 
                                rgba(250, 250, 250, 1) 0%, 
                                rgba(250, 250, 250, 0.8) 50%,
                                transparent 100%);
}

.berufsfelder-track {
    display: flex;
    gap: var(--spacing-lg);
    animation: scroll 50s linear infinite;
    width: max-content;
}

.berufsfelder-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.berufsfeld-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.98) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.berufsfeld-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gray-800) 50%, var(--color-primary) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.berufsfeld-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(27, 27, 27, 0.2);
    border-color: rgba(27, 27, 27, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 0.8) 100%);
}

.berufsfeld-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.berufsfeld-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
                                rgba(27, 27, 27, 0.05) 0%, 
                                rgba(27, 27, 27, 0.4) 100%);
    z-index: 1;
    transition: all var(--transition-normal);
}

.berufsfeld-card:hover .berufsfeld-image::before {
    background: linear-gradient(180deg, 
                                rgba(27, 27, 27, 0.1) 0%, 
                                rgba(27, 27, 27, 0.5) 100%);
}

.berufsfeld-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.berufsfeld-card:hover .berufsfeld-image img {
    transform: scale(1.05);
}

.berufsfeld-content {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.berufsfeld-content h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* ========================================
   Appointment Booking / Calendar - Fullscreen Steps
   ======================================== */

/* Termin Section - Compact Viewport */
#termin {
    padding: var(--spacing-xl) 0;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#termin > .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#termin .section-header {
    margin-bottom: var(--spacing-md);
}

#termin .section-header h2 {
    margin-bottom: var(--spacing-xs);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

#termin .section-header p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Progress Steps - Compact */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.4;
    transition: all var(--transition-normal);
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.progress-number {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--color-gray-200);
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

.progress-step.active .progress-number {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.progress-step.completed .progress-number {
    background: var(--color-success);
    color: white;
}

.progress-step span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active span {
    color: var(--color-primary);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--color-gray-200);
    max-width: 50px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.progress-line.active {
    background: linear-gradient(90deg, var(--color-success) 0%, var(--color-accent-gold) 100%);
}

/* Steps Container - Compact */
.booking-steps-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-step {
    display: none;
    animation: fadeInUp 0.3s ease-out;
    width: 100%;
}

.booking-step.active {
    display: block;
}

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

/* Fullscreen Step Content - Compact */
.step-content-fullscreen {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.98) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(27, 27, 27, 0.1);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.step-content-fullscreen h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
    font-size: 1.375rem;
}

.step-subtitle {
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
}

.step-subtitle strong {
    color: var(--color-primary);
}

/* Back Button - Compact */
.step-back-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: transparent;
    border: none;
    color: var(--color-gray-600);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    margin-bottom: var(--spacing-sm);
}

.step-back-btn:hover {
    background: rgba(27, 27, 27, 0.05);
    color: var(--color-primary);
}

.step-back-btn svg {
    width: 16px;
    height: 16px;
}

/* Calendar - Compact */
.calendar-fullscreen {
    max-width: 420px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-gray-200);
}

.calendar-month-year {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.05) 0%, rgba(27, 27, 27, 0.02) 100%);
    border: 2px solid rgba(27, 27, 27, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--color-primary);
}

.calendar-nav-btn svg {
    width: 18px;
    height: 18px;
}

.calendar-nav-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 100%);
    border-color: var(--color-accent-gold);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.calendar-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-nav-btn:disabled:hover {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.05) 0%, rgba(27, 27, 27, 0.02) 100%);
    border-color: rgba(27, 27, 27, 0.1);
    transform: none;
    box-shadow: none;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.calendar-weekdays span {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-gray-600);
    padding: var(--spacing-xs);
}

.calendar-weekdays .weekend {
    color: var(--color-gray-400);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    background: rgba(27, 27, 27, 0.02);
    color: var(--color-primary);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 224, 157, 0.15) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.08);
}

.calendar-day.today {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.1) 0%, rgba(27, 27, 27, 0.05) 100%);
    border-color: rgba(27, 27, 27, 0.25);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    border-color: var(--color-gold-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    transform: scale(1.1);
}

.calendar-day.disabled {
    color: var(--color-gray-300);
    cursor: not-allowed;
    opacity: 0.4;
    background: transparent;
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
}

.calendar-day.weekend:not(.selected):not(.disabled) {
    color: var(--color-gray-500);
}

/* Time Slots - Compact */
.time-slots-fullscreen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.time-slot {
    padding: var(--spacing-sm) var(--spacing-xs);
    border-radius: var(--radius-md);
    border: 2px solid rgba(27, 27, 27, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-primary);
}

.time-slot:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 224, 157, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    border-color: var(--color-gold-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

/* Booking Form - Compact */
.booking-form-fullscreen {
    text-align: left;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.booking-form-fullscreen .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.booking-form-fullscreen .form-group {
    margin-bottom: 0;
}

.booking-form-fullscreen .form-group label {
    color: var(--color-gray-700);
    margin-bottom: 4px;
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
}

.booking-form-fullscreen .form-group input,
.booking-form-fullscreen .form-group select,
.booking-form-fullscreen .form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid rgba(27, 27, 27, 0.15);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    background: white;
}

.booking-form-fullscreen .form-group textarea {
    resize: none;
}

.booking-form-fullscreen .form-group input:focus,
.booking-form-fullscreen .form-group select:focus,
.booking-form-fullscreen .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.booking-form-fullscreen .checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.booking-form-fullscreen .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: 400;
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

.booking-form-fullscreen .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--color-accent-gold);
}

.booking-form-fullscreen .checkbox-label a {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.form-info-notice {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(244, 224, 157, 0.08) 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.form-info-notice .info-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    color: white;
    line-height: 1;
}

.form-info-notice span {
    font-size: 0.8125rem;
    color: var(--color-gray-700);
    line-height: 1.4;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    margin-top: var(--spacing-sm);
}

/* Success Step - Compact */
.step-success {
    text-align: center;
}

.step-success h3 {
    font-size: 1.5rem !important;
    margin-bottom: var(--spacing-md) !important;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    animation: successPop 0.5s ease-out;
}

.success-icon svg {
    width: 45px;
    height: 45px;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-details {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 224, 157, 0.08) 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.confirmation-details p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-primary);
}

.confirmation-details strong {
    display: block;
    font-size: 1rem;
    margin-top: var(--spacing-xs);
}

.confirmation-notice {
    background: rgba(27, 27, 27, 0.03);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.confirmation-notice h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    text-align: center;
    font-size: 1rem;
}

.confirmation-notice ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.confirmation-notice li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    color: var(--color-gray-700);
    font-size: 0.875rem;
}

.confirmation-notice li svg {
    color: var(--color-success);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.confirmation-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Termin Section Background */
#termin::before {
    background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1600&h=1000&fit=crop');
    opacity: 0.06;
}

/* Contact Section - Compact Layout */
.section-contact {
    padding: var(--spacing-xl) 0;
}

.section-header-compact {
    margin-bottom: var(--spacing-lg);
}

.section-header-compact h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-xs);
}

.section-header-compact p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Contact Info Cards - Zentriert oben */
.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

a.contact-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.6875rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 0.875rem;
    color: var(--color-surface-primary);
    font-weight: 600;
}

/* Contact Grid - Formular + Karte nebeneinander */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: stretch;
}

/* Contact Form Box */
.contact-form-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.contact-form-box h3 {
    color: var(--color-surface-primary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.contact-form-compact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex: 1;
}

.contact-form-compact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

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

.contact-form-compact .form-group label {
    font-size: 0.75rem;
    margin-bottom: 4px;
    color: var(--color-gray-300);
}

.contact-form-compact .form-group input,
.contact-form-compact .form-group select,
.contact-form-compact .form-group textarea {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.contact-form-compact .checkbox-label {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.contact-form-compact .checkbox-label input {
    width: 14px;
    height: 14px;
}

.contact-form-compact .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    margin-top: auto;
}

/* Contact Map - Gleiche Höhe wie Formular */
.contact-map-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-map-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-map-header svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.contact-map-header span {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    font-weight: 500;
}

.contact-map {
    flex: 1;
    min-height: 280px;
    background: var(--color-gray-800);
}

.contact-map iframe {
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter var(--transition-normal);
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .section-contact {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-compact .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-form-box {
        padding: var(--spacing-md);
    }
    
    .contact-map {
        min-height: 180px;
    }
}

/* Responsive Booking Steps */
@media (max-width: 768px) {
    #termin {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }
    
    .booking-progress {
        gap: 4px;
        margin-bottom: var(--spacing-md);
    }
    
    .progress-step span {
        display: none;
    }
    
    .progress-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .progress-line {
        max-width: 30px;
    }
    
    .step-content-fullscreen {
        padding: var(--spacing-md);
    }
    
    .step-content-fullscreen h3 {
        font-size: 1.25rem;
    }
    
    .calendar-fullscreen {
        max-width: 100%;
    }
    
    .calendar-day {
        font-size: 0.8125rem;
    }
    
    .calendar-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .calendar-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .time-slots-fullscreen {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
    }
    
    .time-slot {
        padding: var(--spacing-xs);
        font-size: 0.8125rem;
    }
    
    .booking-form-fullscreen .form-row {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #termin .section-header h2 {
        font-size: 1.25rem;
    }
    
    #termin .section-header p {
        font-size: 0.8125rem;
    }
    
    .calendar-weekdays span {
        font-size: 0.6875rem;
        padding: 2px;
    }
    
    .calendar-day {
        font-size: 0.75rem;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
    
    .time-slots-fullscreen {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .step-success h3 {
        font-size: 1.125rem !important;
    }
}

/* ========================================
   Contact & Forms
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.contact-form-container,
.appointment-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.contact-form-container h3,
.appointment-container h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-surface-primary);
}

.contact-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-surface-primary);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(27, 27, 27, 0.15);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(27, 27, 27, 0.3);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 0.5) 100%);
    box-shadow: 0 4px 15px rgba(27, 27, 27, 0.12);
    transform: translateY(-1px);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

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

.form-message {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    display: none;
}

.form-message.success {
    background-color: var(--color-success);
    color: white;
    display: block;
}

.form-message.error {
    background-color: var(--color-error);
    color: white;
    display: block;
}

.appointment-container p {
    color: var(--color-gray-300);
    margin-bottom: var(--spacing-md);
}

.appointment-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 224, 157, 0.05) 100%),
                url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=800&h=600&fit=crop') center/cover;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgb(212, 175, 55);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.appointment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.85) 0%, rgba(27, 27, 27, 0.75) 100%);
    z-index: 0;
}

.appointment-box > * {
    position: relative;
    z-index: 1;
}

.appointment-box svg {
    color: var(--color-gold-medium);
    margin: 0 auto var(--spacing-md);
}

.appointment-box p {
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info h4 {
    color: var(--color-surface-primary);
    margin-bottom: var(--spacing-md);
}

.contact-info ul {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-300);
}

.contact-info svg {
    color: var(--color-gold-medium);
    flex-shrink: 0;
}

.opening-hours {
    color: var(--color-gray-300);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(180deg, rgba(243, 244, 246, 1) 0%, rgba(249, 250, 251, 0.98) 100%),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=600&fit=crop') center/cover fixed;
    color: var(--color-primary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.95) 0%, rgba(243, 244, 246, 0.97) 100%);
    z-index: 0;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

/* Footer Header - Logo & Slogan zentriert */
.footer-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-gray-200);
}

.footer-header .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.footer-header .footer-logo img {
    height: 50px;
    width: auto;
}

.footer-header p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    margin: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Grid - 4 Spalten */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}


.footer-column h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column p,
.footer-column li {
    color: var(--color-gray-600);
    font-size: 0.8125rem;
    margin-bottom: 6px;
    line-height: 1.5;
}

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

/* Footer Contact List mit Icons */
.footer-contact .contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact .contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.footer-contact .contact-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-600);
    transition: color var(--transition-fast);
}

.footer-contact .contact-list li a:hover {
    color: var(--color-accent-gold);
}

.footer-contact .contact-list li a:hover svg {
    color: var(--color-accent-gold);
}

.footer-contact .contact-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.footer-contact .contact-list span {
    font-size: 0.8125rem;
    color: inherit;
}

/* Navigation 2-spaltig */
.footer-column.footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px var(--spacing-lg);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-column.footer-nav ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Kontakt-Liste zentriert */
    .footer-contact .contact-list {
        align-items: center;
    }
    
    .footer-contact .contact-list li,
    .footer-contact .contact-list li a {
        justify-content: center;
    }
    
    /* Navigation auf Mobile: 1 Spalte, zentriert */
    .footer-column.footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    /* Social Icons zentriert */
    .footer-social-column .social-icons {
        justify-content: center;
    }
    
    .footer-social-column .whatsapp-link {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .footer-header .footer-logo img {
        height: 50px;
    }
    
    .footer-header p {
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.social-icons {
    display: flex;
    gap: var(--spacing-xs);
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: var(--color-surface-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.social-icons a svg {
    width: 18px;
    height: 18px;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 100%);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Footer Social & WhatsApp Column */
.footer-social-column .social-icons {
    margin-bottom: var(--spacing-md);
}

.footer-social-column .whatsapp-title {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-social-column .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social-column .whatsapp-link:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    color: white;
}

.footer-social-column .whatsapp-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-300);
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.8125rem;
    margin: 0;
}

/* ========================================
   Cookie Bar
   ======================================== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.98) 0%, rgba(27, 27, 27, 1) 100%);
    color: var(--color-surface-primary);
    padding: var(--spacing-lg);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    border-top: 3px solid var(--color-gray-600);
    backdrop-filter: blur(15px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--color-gray-300);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.cookie-overlay.show {
    display: flex;
}

.cookie-overlay-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.98) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(27, 27, 27, 0.2);
    animation: slideUpFade 0.4s ease-out;
}

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

.cookie-overlay-content h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.cookie-category {
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(249, 250, 251, 1) 0%, rgba(243, 244, 246, 0.95) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(27, 27, 27, 0.08);
    transition: all var(--transition-normal);
}

.cookie-category:hover {
    border-color: rgba(27, 27, 27, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
}

.cookie-category h4 {
    margin: 0;
    font-size: 1rem;
}

.cookie-status {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    font-weight: 600;
}

.cookie-category p {
    font-size: 0.875rem;
    margin: 0;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-300);
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.toggle input:checked + .toggle-slider {
    background-color: var(--color-primary);
}

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

.cookie-overlay-buttons {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.cookie-overlay-buttons .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

/* Cookie Overlay Responsive */
@media (max-width: 768px) {
    .cookie-overlay {
        padding: var(--spacing-sm);
        align-items: flex-end;
    }
    
    .cookie-overlay-content {
        padding: var(--spacing-md);
        border-radius: var(--radius-lg);
        max-height: 85vh;
        margin-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .cookie-overlay-content h3 {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .cookie-category {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
    }
    
    .cookie-category h4 {
        font-size: 0.875rem;
    }
    
    .cookie-category p {
        font-size: 0.8125rem;
        margin-bottom: 0;
    }
    
    .cookie-status {
        font-size: 0.75rem;
    }
    
    .toggle {
        width: 44px;
        height: 22px;
    }
    
    .toggle-slider:before {
        height: 16px;
        width: 16px;
    }
    
    .toggle input:checked + .toggle-slider:before {
        transform: translateX(22px);
    }
    
    .cookie-overlay-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-sm);
    }
    
    .cookie-overlay-buttons .btn {
        width: 100%;
        padding: 0.625rem 1rem;
    }
}

/* Cookie Bar Button Overrides für dunklen Hintergrund */
.cookie-bar .btn-secondary {
    color: var(--color-surface-primary);
    background: transparent;
    border: 2px solid var(--color-accent-gold);
}

.cookie-bar .btn-secondary:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    border-color: var(--color-gold-dark);
}

.cookie-bar .btn-text {
    color: var(--color-gray-300);
}

.cookie-bar .btn-text:hover {
    color: var(--color-surface-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Cookie Bar Icon Sichtbarkeit */
.cookie-bar .btn svg,
.cookie-bar .btn-secondary svg,
.cookie-bar .btn-text svg {
    color: inherit;
}

/* ========================================
   Section-specific Backgrounds
   ======================================== */
/* Für Bewerber Section */
#fuer-bewerber::before {
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1600&h=1000&fit=crop');
    opacity: 0.09;
}

/* Stellenangebote Section */
#stellenangebote {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
}

#stellenangebote::before {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&h=1000&fit=crop');
    opacity: 0.15;
}

/* Ablauf Section */
#ablauf {
    transition: background-color 0.5s ease, color 0.5s ease;
}

#ablauf::before {
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&h=1000&fit=crop');
    opacity: 0.09;
    transition: opacity 0.5s ease;
}

/* Ablauf Section - Dark Theme (für Unternehmen Tab) */
#ablauf.theme-dark {
    background-color: var(--color-primary);
    color: var(--color-surface-primary);
}

#ablauf.theme-dark::before {
    opacity: 0.12;
}

#ablauf.theme-dark .section-header h2,
#ablauf.theme-dark .section-header p {
    color: var(--color-surface-primary);
    transition: color 0.5s ease;
}

#ablauf.theme-dark .tabs {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

#ablauf.theme-dark .tabs-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

#ablauf.theme-dark .tab-button {
    color: var(--color-gray-400);
}

#ablauf.theme-dark .tab-button:hover {
    color: var(--color-surface-primary);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
}

#ablauf.theme-dark .tab-button.active {
    color: var(--color-surface-primary);
    border-bottom-color: var(--color-accent-gold);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

#ablauf.theme-dark .step-content h3 {
    color: var(--color-surface-primary);
}

#ablauf.theme-dark .step-content p {
    color: var(--color-gray-300);
}

#ablauf.theme-dark .ablauf-image img {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Über uns Section */
#ueber-uns::before {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&h=1000&fit=crop');
    opacity: 0.04;
}

/* Berufsfelder Section */
#berufsfelder::before {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&h=1000&fit=crop');
    opacity: 0.05;
}

/* FAQ Section */
#faq::before {
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600&h=1000&fit=crop');
    opacity: 0.09;
}

/* Für Unternehmen Section (Dark) */
#fuer-unternehmen::before {
    background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1600&h=1000&fit=crop');
    opacity: 0.12;
}

/* Kontakt Section (Dark) */
#kontakt::before {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&h=1000&fit=crop');
    opacity: 0.10;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e09d 50%, #d4af37 100%);
    color: var(--color-primary);
    border: 2px solid rgba(244, 224, 157, 0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity var(--transition-normal), 
                visibility var(--transition-normal), 
                box-shadow var(--transition-normal), 
                background var(--transition-normal),
                border-color var(--transition-normal);
}

/* Invisible hit area to prevent flickering */
.scroll-to-top::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: var(--radius-full);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    border-radius: var(--radius-full);
    pointer-events: none;
}

.scroll-to-top:hover::before {
    left: 100%;
}

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

.scroll-to-top:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, #f4e09d 0%, #d4af37 50%, #f4e09d 100%);
    border-color: rgba(244, 224, 157, 0.6);
}

.scroll-to-top:active {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.scroll-to-top svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast);
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    /* Navigation auf Tablets - Logo sichtbar halten */
    .nav-logo {
        display: flex;
    }
    
    .nav-logo img {
        height: 55px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #ueber-uns .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .ablauf-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .ablauf-image {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .founder-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-box::before {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 244, 204, 0.7) 100%);
    }
    
    .founder-image {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .founder-image img {
        margin: 0 auto;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        object-position: top;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-centered {
        max-width: 100%;
    }
    
    .tabs {
        padding: var(--spacing-md);
    }
}

@media (max-width: 900px) {
    /* Navigation auf Tablet/Mobile - Burger Menu aktivieren */
    .nav-container {
        justify-content: space-between;
        padding: var(--spacing-md);
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    .burger-menu {
        display: flex;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 73px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        backdrop-filter: blur(15px);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Nav Menu Content */
    .nav-menu-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-lg);
        gap: var(--spacing-xs);
    }
    
    .nav-menu-content li {
        list-style: none;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: var(--spacing-md) 0;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--color-primary);
        border-bottom: 1px solid var(--color-gray-200);
        white-space: normal;
    }
    
    .nav-menu a.btn {
        border: none;
        margin-top: var(--spacing-md);
        padding: var(--spacing-md) var(--spacing-lg);
        text-align: center;
        border-radius: var(--radius-full);
        background: linear-gradient(135deg, #d4af37 0%, #f4e09d 100%);
        color: var(--color-primary);
    }
    
    /* Nav Menu Social */
    .nav-menu-social {
        display: block;
        padding: var(--spacing-lg);
        background: linear-gradient(180deg, rgba(27, 27, 27, 0.02) 0%, rgba(27, 27, 27, 0.05) 100%);
        border-top: 2px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu-social p {
        text-align: center;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--color-gray-600);
        margin-bottom: var(--spacing-sm);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .nav-social-icons {
        display: flex;
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .nav-social-icons a {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #d4af37 0%, #f4e09d 100%);
        color: var(--color-primary);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-fast);
    }
    
    .nav-social-icons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }
    
    .nav-social-icons svg {
        width: 24px;
        height: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cards-grid,
    #ueber-uns .cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 100%;
    }
    
    .card {
        padding: var(--spacing-md);
        min-height: auto;
    }
    
    .card h3 {
        font-size: 1.125rem;
    }
    
    .card p {
        font-size: 0.875rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-button.active {
        border-left-color: var(--color-accent-gold);
        border-bottom-color: transparent;
    }
    
    .berufsfeld-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .berufsfeld-image {
        height: 180px;
    }
    
    /* Reduziere Fade-Effekt auf Tablet */
    .berufsfelder-slider::before,
    .berufsfelder-slider::after {
        width: 60px;
    }
    
    .berufsfelder-slider::before {
        background: linear-gradient(to right, 
                                    rgba(250, 250, 250, 1) 0%, 
                                    rgba(250, 250, 250, 0.5) 50%,
                                    transparent 100%);
    }
    
    .berufsfelder-slider::after {
        background: linear-gradient(to left, 
                                    rgba(250, 250, 250, 1) 0%, 
                                    rgba(250, 250, 250, 0.5) 50%,
                                    transparent 100%);
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
    
    .accordion-header {
        padding-right: var(--spacing-2xl);
    }
    
    .accordion-meta {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .job-badges {
        width: 100%;
    }
    
    .badge-gold {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Zeige "Wir bieten" Preview auf Mobile - ohne Hintergrund */
    .job-preview-mobile {
        display: block;
        margin-top: var(--spacing-sm);
        padding: var(--spacing-sm) 0 0 0;
        border-radius: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: none;
    }
    
    .job-preview-mobile .preview-label {
        font-size: 1rem;
        margin-bottom: var(--spacing-2xs);
    }
    
    .job-preview-mobile .preview-text {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Verstecke "Wir bieten" im aufgeklappten Inhalt auf Mobile */
    .wir-bieten-section {
        display: none;
    }
    
    /* Entferne äußeren Container auf Mobile */
    #stellenangebote .accordion {
        background: none;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Accordion-Items auf Mobile - gleiche Breite wie obere Box */
    .accordion-item {
        margin-bottom: var(--spacing-md);
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-lg);
    }
    
    .accordion-header {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    /* Gut lesbare Schrift auf Mobile */
    .accordion-title h3 {
        font-size: 1.35rem;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .accordion-meta {
        margin-top: var(--spacing-xs);
        gap: var(--spacing-2xs);
    }
    
    .meta-item {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .meta-date {
        font-size: 0.9rem;
    }
    
    .job-badges {
        margin-top: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .badge-gold {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
    }
    
    /* Pfeil oben rechts positionieren auf Mobile */
    .accordion-icon {
        right: var(--spacing-sm);
        top: var(--spacing-sm);
        width: 26px;
        height: 26px;
    }
    
    /* Mehr Platz für Titel damit Pfeil nicht überlappt */
    .accordion-title {
        padding-right: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    /* Logo auf Mobile zentrieren */
    .nav-container {
        justify-content: center;
        position: relative;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .burger-menu {
        margin-left: auto;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-overlay-buttons {
        flex-direction: column;
    }
    
    .berufsfeld-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .berufsfeld-image {
        height: 160px;
    }
    
    .berufsfeld-content h3 {
        font-size: 1rem;
    }
    
    /* Reduziere Fade-Effekt auf Mobile */
    .berufsfelder-slider::before,
    .berufsfelder-slider::after {
        width: 30px;
    }
    
    .berufsfelder-slider::before {
        background: linear-gradient(to right, 
                                    rgba(250, 250, 250, 0.9) 0%, 
                                    transparent 100%);
    }
    
    .berufsfelder-slider::after {
        background: linear-gradient(to left, 
                                    rgba(250, 250, 250, 0.9) 0%, 
                                    transparent 100%);
    }
}

