/* ==========================================
   AUSBILDUNGPLUS - ULTRA PREMIUM DESIGN
   TOP-LEVEL PROFESSIONAL WEBSITE
   ========================================== */

:root {
    --navy: #011627;
    --navy-dark: #000a14;
    --navy-light: #022a42;
    --red: #A4031F;
    --red-dark: #8a0219;
    --red-light: #c7042a;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    --gradient-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    
    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(1, 22, 39, 0.04);
    --shadow-md: 0 4px 16px rgba(1, 22, 39, 0.08);
    --shadow-lg: 0 12px 32px rgba(1, 22, 39, 0.12);
    --shadow-xl: 0 24px 48px rgba(1, 22, 39, 0.16);
    --shadow-2xl: 0 32px 64px rgba(1, 22, 39, 0.20);
    --shadow-inner: inset 0 2px 8px rgba(1, 22, 39, 0.06);
    
    /* Glow Effects */
    --glow-red: 0 0 20px rgba(164, 3, 31, 0.3);
    --glow-navy: 0 0 20px rgba(1, 22, 39, 0.3);
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia Pro', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

/* ==========================================
   PREMIUM NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(1, 22, 39, 0.08);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-content {
    padding: 16px 0;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Georgia Pro', Georgia, serif;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
    width: 100%;
}

.logo .accent {
    color: var(--red);
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover .accent {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:not(.btn-nav):hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.5s ease;
}

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

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================
   ULTRA PREMIUM HERO SECTION
   ========================================== */

.hero {
    background: var(--gradient-primary);
    padding: 200px 0 140px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Animated Background Gradient */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(164, 3, 31, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite reverse;
}

/* Premium Pattern Overlay */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.18);
}

.hero-title {
    font-size: 5.5rem;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1;
    letter-spacing: -3px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title .accent {
    color: var(--red);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 750px;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 80px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s backwards;
}

.stat {
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-number {
    font-size: 4.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Georgia Pro', Georgia, serif;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Floating Icons with Premium Animation */
.hero-icons {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 52px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    animation: floatComplex 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { 
    top: 10%; left: 10%; 
    animation-delay: 0s;
    opacity: 0.15;
}
.floating-icon:nth-child(2) { 
    top: 20%; right: 10%; 
    animation-delay: 1s;
    opacity: 0.12;
}
.floating-icon:nth-child(3) { 
    bottom: 30%; left: 20%; 
    animation-delay: 2s;
    opacity: 0.18;
}
.floating-icon:nth-child(4) { 
    bottom: 20%; right: 15%; 
    animation-delay: 3s;
    opacity: 0.14;
}
.floating-icon:nth-child(5) { 
    top: 45%; left: 45%; 
    animation-delay: 1.5s;
    opacity: 0.16;
}
.floating-icon:nth-child(6) { 
    top: 60%; right: 25%; 
    animation-delay: 2.5s;
    opacity: 0.13;
}
.floating-icon:nth-child(7) { 
    bottom: 40%; left: 35%; 
    animation-delay: 3.5s;
    opacity: 0.17;
}
.floating-icon:nth-child(8) { 
    top: 35%; right: 40%; 
    animation-delay: 0.8s;
    opacity: 0.11;
}

@keyframes floatComplex {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) rotate(5deg);
    }
    50% { 
        transform: translateY(-15px) rotate(-3deg);
    }
    75% {
        transform: translateY(-30px) rotate(8deg);
    }
}

/* ==========================================
   PREMIUM BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl), var(--glow-red);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(164, 3, 31, 0.05);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 17px;
}

/* ==========================================
   PREMIUM SECTIONS
   ========================================== */

section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(164, 3, 31, 0.08);
    color: var(--red);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(164, 3, 31, 0.1), transparent);
    transition: left 0.6s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-header h2 {
    font-size: 3.25rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    box-shadow: var(--glow-red);
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Continue in next part... */

/* ==========================================
   ULTRA PREMIUM WORKSHOP CARDS
   ========================================== */

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
}

.workshop-card {
    background: var(--white);
    padding: 56px;
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(164, 3, 31, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.workshop-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--navy);
}

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

.workshop-card:hover::after {
    opacity: 1;
}

.workshop-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(164, 3, 31, 0.1) 0%, rgba(1, 22, 39, 0.1) 100%);
    color: var(--red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.workshop-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.workshop-target {
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 28px;
    font-weight: 500;
}

.workshop-duration {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 12px;
    margin-bottom: 36px;
    font-size: 15px;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.workshop-topics {
    margin-bottom: 40px;
}

.topic {
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 28px;
}

.topic::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.topic:hover {
    color: var(--navy);
    padding-left: 32px;
}

.topic:hover::before {
    transform: scale(1.2);
}

.topic:last-child {
    border-bottom: none;
}

/* ==========================================
   ULTRA PREMIUM BENEFITS
   ========================================== */

.benefits-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(1, 22, 39, 0.03) 0%, transparent 70%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
}

.benefit-card {
    text-align: center;
    padding: 48px 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(164, 3, 31, 0.05) 0%, rgba(1, 22, 39, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red);
}

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

.benefit-icon {
    font-size: 72px;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    color: var(--navy);
}

.benefit-icon svg {
    display: block;
    stroke: var(--navy);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon svg {
    stroke: var(--red);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(164, 3, 31, 0.3));
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ==========================================
   ULTRA PREMIUM PROCESS STEPS
   ========================================== */

.process-section {
    background: var(--white);
}

.process-steps {
    max-width: 950px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 48px;
    margin-bottom: 72px;
    align-items: flex-start;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 110px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--red) 0%, var(--navy) 100%);
    opacity: 0.2;
}

.process-step:last-child::after {
    display: none;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    font-weight: 700;
    font-family: 'Georgia Pro', Georgia, serif;
    box-shadow: var(--shadow-lg), var(--glow-navy);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.08) rotate(-5deg);
}

.process-step:hover .step-number::before {
    opacity: 1;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 1.85rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.step-content p {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================
   ULTRA PREMIUM CTA SECTION
   ========================================== */

.cta-section {
    background: var(--gradient-accent);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 28px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 52px;
    opacity: 0.96;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--gradient-primary);
    border: 2px solid var(--navy);
}

.cta-buttons .btn-primary:hover {
    background: var(--navy-dark);
    box-shadow: var(--shadow-2xl), var(--glow-navy);
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

/* ==========================================
   ULTRA PREMIUM FOOTER
   ========================================== */

.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

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

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

.footer-column h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-column h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-red);
    border-color: var(--red);
}

.footer-bottom {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* ==========================================
   PREMIUM ANIMATIONS
   ========================================== */

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for multiple items */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate:nth-child(6) { transition-delay: 0.6s; }

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
    .hero-icons {
        right: 5%;
        width: 350px;
        height: 350px;
    }
    
    .floating-icon {
        font-size: 40px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    .nav-links {
        position: fixed;
        top: 89px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 28px;
        box-shadow: var(--shadow-xl);
        transform: translateY(-200%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid var(--gray-200);
    }

    .nav-links.active {
        transform: translateY(0);
    }

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

    .hero {
        padding: 160px 0 120px;
        min-height: auto;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 40px;
    }

    .hero-icons {
        display: none;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .workshop-cards {
        grid-template-columns: 1fr;
    }

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

    .process-step {
        flex-direction: column;
        gap: 28px;
    }

    .process-step::after {
        display: none;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.65rem; }

    .hero-title {
        font-size: 2.75rem;
        letter-spacing: -1px;
    }

    section {
        padding: 100px 0;
    }

    .workshop-card {
        padding: 40px 28px;
    }

    .benefit-card {
        padding: 36px 24px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2.25rem;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .navbar, .footer, .btn, .mobile-menu-btn {
        display: none;
    }
    
    * {
        box-shadow: none !important;
        animation: none !important;
    }
}

/* SVG Icon Styling */
.counter-icon svg,
.workshop-duration .icon svg {
    display: block;
}

.counter-icon svg {
    stroke: var(--red);
}

.workshop-duration .icon svg {
    stroke: var(--gray-700);
}

.workshop-duration .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ==========================================
   PROFESSIONAL COOKIE BANNER - DSGVO COMPLIANT
   ========================================== */

/* Cookie Banner Overlay */
.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cookie-banner-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cookie Banner Container */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -8px 32px rgba(1, 22, 39, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px;
}

/* Cookie Banner Header */
.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.cookie-banner-header h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 0;
}

/* Cookie Banner Text */
.cookie-banner-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 15px;
}

.cookie-banner-text a {
    color: var(--red);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--red-dark);
}

/* Cookie Settings Toggle */
.cookie-settings-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-toggle:hover {
    background: var(--gray-50);
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 8px;
}

.cookie-settings-toggle span {
    color: var(--navy);
    font-weight: 600;
    flex: 1;
}

.cookie-toggle-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
    transition: transform 0.3s ease;
}

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

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
}

.cookie-settings-panel.active {
    max-height: 600px;
}

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

.cookie-category:hover {
    border-color: var(--gray-300);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookie-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.cookie-category-description {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-300);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--red);
    box-shadow: 0 0 12px rgba(164, 3, 31, 0.3);
}

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

.cookie-switch input:disabled + .cookie-slider {
    background: var(--navy);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-switch input:disabled + .cookie-slider:before {
    cursor: not-allowed;
}

/* Cookie Banner Buttons */
.cookie-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.cookie-btn::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 ease, height 0.6s ease;
}

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

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: white;
    flex: 1;
    min-width: 200px;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(164, 3, 31, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    flex: 1;
    min-width: 180px;
}

.cookie-btn-reject:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.cookie-btn-save {
    background: var(--gradient-primary);
    color: white;
    flex: 1;
    min-width: 200px;
}

.cookie-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 22, 39, 0.4);
}

/* Cookie Settings Link in Footer */
.cookie-settings-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.cookie-settings-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cookie-settings-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 32px 24px;
    }

    .cookie-banner-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cookie-banner-header h3 {
        font-size: 1.3rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        min-width: auto;
    }

    .cookie-category {
        padding: 16px;
    }
}

/* Animation for Cookie Icon */
@keyframes cookiePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cookie-icon {
    animation: cookiePulse 2s ease-in-out infinite;
}

/* Focus States for Accessibility */
.cookie-btn:focus,
.cookie-switch input:focus + .cookie-slider,
.cookie-settings-toggle:focus {
    outline: 3px solid var(--red);
    outline-offset: 2px;
}
