/* assets/css/main.css - Main Stylesheet */
:root {
    /* Ultra-Glamorous Rotlicht-Farbpalette */
    --primary-color: #8B0000;          /* Tiefes Bordeaux */
    --secondary-color: #C41E3A;        /* Sinnliches Karmesin */
    --accent-color: #DAA520;           /* Luxus-Gold */
    --tertiary-color: #2E0854;         /* Mystisches Violett */
    --quaternary-color: #B8860B;       /* Dunkles Gold */
    
    /* Glamour-Hintergründe */
    --dark-bg: #0A0A0A;               /* Samtiges Schwarz */
    --dark-secondary: #1A0F0F;        /* Warme Dunkelheit */
    --dark-tertiary: #2D1B1B;         /* Edles Rotbraun */
    --glass-dark: rgba(26, 15, 15, 0.85);
    
    /* Elegante Text-Töne */
    --text-light: #F8F8FF;           /* Ghost White */
    --text-gold: #FFD700;            /* Pure Gold */
    --text-champagne: #F7E7CE;       /* Champagner */
    --text-muted: rgba(248, 248, 255, 0.75);
    --text-accent: #FF6B6B;          /* Warmes Korallen */
    
    /* Luxus-UI-Elemente */
    --border-gold: rgba(218, 165, 32, 0.6);
    --border-crimson: rgba(196, 30, 58, 0.5);
    --border-glass: rgba(248, 248, 255, 0.1);
    --success-color: #32CD32;
    --warning-color: #FF8C00;
    --error-color: #DC143C;
    
    /* Glamour-Schatten */
    --shadow-gold: 0 0 30px rgba(218, 165, 32, 0.4);
    --shadow-crimson: 0 0 25px rgba(196, 30, 58, 0.5);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-glass: 0 8px 32px rgba(218, 165, 32, 0.15);
    
    /* Elegante Verläufe */
    --gradient-primary: linear-gradient(135deg, #8B0000 0%, #C41E3A 50%, #DAA520 100%);
    --gradient-glass: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
    --gradient-background: radial-gradient(ellipse at top, rgba(139, 0, 0, 0.15), transparent 70%);
    
    /* Luxus-Animationen */
    --transition-luxury: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    
    --border-radius: 15px;
    --border-radius-sm: 8px;
    --border-radius-lg: 25px;
}

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

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Ultra-Glamouröse Background-Effekte */
body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-background);
    z-index: -3;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(145deg, 
        var(--dark-bg) 0%, 
        var(--dark-secondary) 25%, 
        var(--dark-tertiary) 50%, 
        rgba(139, 0, 0, 0.1) 75%,
        var(--dark-bg) 100%);
    animation: gradientShift 25s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(145deg, 
            var(--dark-bg) 0%, 
            var(--dark-secondary) 25%, 
            var(--dark-tertiary) 50%, 
            rgba(139, 0, 0, 0.1) 75%,
            var(--dark-bg) 100%);
        transform: rotate(0deg) scale(1);
    }
    33% { 
        background: linear-gradient(145deg, 
            var(--dark-secondary) 0%, 
            rgba(196, 30, 58, 0.2) 25%, 
            var(--dark-tertiary) 50%, 
            rgba(218, 165, 32, 0.1) 75%,
            var(--dark-secondary) 100%);
        transform: rotate(0.5deg) scale(1.01);
    }
    66% {
        background: linear-gradient(145deg, 
            var(--dark-tertiary) 0%, 
            rgba(218, 165, 32, 0.15) 25%, 
            var(--dark-secondary) 50%, 
            rgba(196, 30, 58, 0.1) 75%,
            var(--dark-bg) 100%);
        transform: rotate(-0.5deg) scale(1.01);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: luxuryFloat 30s infinite ease-in-out;
    background: radial-gradient(circle, 
        rgba(218, 165, 32, 0.8) 0%, 
        rgba(196, 30, 58, 0.6) 30%, 
        rgba(139, 0, 0, 0.4) 60%,
        rgba(46, 8, 84, 0.2) 80%,
        transparent 100%);
    filter: blur(4px);
    z-index: -1;
    box-shadow: var(--shadow-gold);
}

.orb:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.orb:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: -10s;
    background: radial-gradient(circle, 
        rgba(196, 30, 58, 0.8) 0%, 
        rgba(218, 165, 32, 0.6) 40%, 
        transparent 100%);
}

.orb:nth-child(4) {
    width: 500px;
    height: 500px;
    bottom: 5%;
    left: 25%;
    animation-delay: -20s;
    background: radial-gradient(circle, 
        rgba(46, 8, 84, 0.6) 0%, 
        rgba(139, 0, 0, 0.4) 50%, 
        transparent 100%);
}

@keyframes luxuryFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-40px) rotate(90deg) scale(1.05); 
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg) scale(0.95); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(30px) rotate(270deg) scale(1.1); 
        opacity: 0.6;
    }
}

.orb:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.orb:nth-child(4) {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-decoration: none;
}

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

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

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

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

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

.nav-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, 
        rgba(220, 20, 60, 0.1) 0%, 
        transparent 50%);
}

.hero-content {
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5em;
    font-weight: 300;
    margin-bottom: 30px;
    background: linear-gradient(135deg, 
        var(--text-light) 0%, 
        var(--secondary-color) 30%, 
        var(--primary-color) 60%, 
        var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 105, 180, 0.8)); }
}

.hero .subtitle {
    font-size: 1.4em;
    margin-bottom: 50px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Ultra-Glamouröse Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    background: var(--gradient-primary);
    background-size: 300% 300%;
    color: var(--text-light);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-crimson), 
                0 0 0 1px var(--border-gold),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: luxuryButtonPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(218, 165, 32, 0.4), 
        transparent);
    transition: var(--transition-smooth);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    transition: var(--transition-bounce);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-deep),
                0 0 0 2px var(--border-gold),
                var(--shadow-gold);
    background-position: 100% 0;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.8);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

@keyframes luxuryButtonPulse {
    0%, 100% { 
        box-shadow: var(--shadow-crimson), 
                    0 0 0 1px var(--border-gold),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        background-position: 0% 50%;
    }
    50% { 
        box-shadow: var(--shadow-gold),
                    0 0 0 2px var(--border-crimson),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
        background-position: 100% 50%;
    }
}

.btn-secondary {
    background: var(--glass-dark);
    border: 2px solid var(--border-gold);
    color: var(--text-champagne);
    padding: 15px 35px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-luxury);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(218, 165, 32, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    background: rgba(218, 165, 32, 0.15);
    color: var(--text-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glass),
                inset 0 1px 0 rgba(218, 165, 32, 0.2);
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-crimson);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

/* Sections */
.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 3.5em;
    font-weight: 300;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners {
    padding: 120px 0;
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

/* Partner Cards - Ultra-Luxuriös */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
    gap: 50px;
    width: 100%;
}

.partner-card {
    background: var(--glass-dark);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-luxury);
    cursor: pointer;
    box-shadow: var(--shadow-glass);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-luxury);
    z-index: 1;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-luxury);
    z-index: 0;
}

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

.partner-card:hover::after {
    opacity: 1;
    animation: cardGlow 2s ease-in-out;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-deep), var(--shadow-gold);
}

@keyframes cardGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.partner-image {
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-glass);
}

.partner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(218, 165, 32, 0.2), 
        transparent 50%, 
        rgba(196, 30, 58, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.partner-card:hover .partner-image::before {
    opacity: 1;
}

.partner-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-luxury);
    filter: contrast(1.1) saturate(1.2);
}

.partner-card:hover .partner-image img {
    transform: scale(1.08);
    filter: contrast(1.3) saturate(1.4);
}

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

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.partner-subtitle {
    color: var(--text-gold);
    font-style: italic;
    margin-bottom: 18px;
    font-size: 1em;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.partner-description {
    color: var(--text-champagne);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.partner-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95em;
    margin-bottom: 25px;
    font-weight: 500;
}

.partner-location::before {
    content: '📍';
    font-size: 16px;
}

.learn-more {
    color: var(--text-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: var(--transition-luxury);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.learn-more::after {
    content: '→';
    transition: var(--transition-smooth);
}

.learn-more:hover {
    color: var(--text-light);
    background: var(--gradient-primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-gold);
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.8);
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(20, 0, 20, 0.8) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), #8b008b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5em;
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.contact-subtitle {
    font-size: 1.2em;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.contact-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
    color: var(--text-muted);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Form Styles */
.application-hero {
    padding: 150px 0 100px;
    background: radial-gradient(ellipse at center, 
        rgba(220, 20, 60, 0.2) 0%, 
        transparent 70%);
    text-align: center;
}

.application-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-form-container {
    padding: 60px 0 120px;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.1) 0%, 
        rgba(139, 0, 139, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.step-title {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.progress-step.active .step-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.form-step {
    display: none;
}

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

.form-step h2 {
    font-family: var(--font-heading);
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.field-error {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
}

.char-counter {
    text-align: right;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* File Upload Styles */
.file-upload-section {
    margin-top: 40px;
}

.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--secondary-color);
    background: rgba(255, 105, 180, 0.1);
}

.file-upload-area input {
    display: none;
}

.upload-placeholder {
    color: var(--text-muted);
}

.upload-placeholder i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.upload-placeholder p {
    font-size: 18px;
    margin-bottom: 10px;
}

.upload-placeholder span {
    font-size: 14px;
    opacity: 0.7;
}

.file-preview {
    margin-top: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
}

.file-preview-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.file-name {
    flex: 1;
    font-weight: 500;
}

.file-size {
    color: var(--text-muted);
    font-size: 14px;
}

.file-remove {
    background: var(--error-color);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Selection */
.partner-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.partner-option {
    cursor: pointer;
}

.partner-option input {
    display: none;
}

.partner-card-mini {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-option input:checked + .partner-card-mini {
    border-color: var(--secondary-color);
    background: rgba(255, 105, 180, 0.1);
}

.partner-card-mini h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.partner-card-mini p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

/* Consent Section */
.consent-section {
    margin-bottom: 40px;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
}

.consent-item input {
    width: auto !important;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.consent-item input:checked + .checkmark {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.consent-item input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.consent-text {
    line-height: 1.5;
    color: var(--text-muted);
}

.consent-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

/* Summary */
.application-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 30px;
}

.application-summary h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-section h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.summary-section p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-content {
    text-align: center;
    color: white;
}

.spinner-large {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.1) 0%, 
        rgba(139, 0, 139, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: white;
    margin: 0 auto 20px;
}

.modal h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
}

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

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

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    color: white;
    font-weight: 500;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
}

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

.toast.success {
    background: var(--success-color);
}

.toast.error {
    background: var(--error-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 30px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.cookie-text p {
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
    color: var(--text-light);
    border-color: var(--text-muted);
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design - Komplett überarbeitet */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-top: 1px solid var(--border-color);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }
    
    .hero .subtitle {
        font-size: 1.2em;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.5em;
        margin-bottom: 60px;
    }
    
    .partners-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-selection,
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .application-form {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .form-progress {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .form-progress::before {
        display: none;
    }
    
    .progress-step {
        min-width: 80px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .step-title {
        font-size: 12px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .orb:nth-child(4) {
        left: -100px;
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero .subtitle {
        font-size: 1.1em;
    }
    
    .logo a {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .partner-card,
    .application-form {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-navigation button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .application-form {
        padding: 15px 10px;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .orb,
    .bg-gradient,
    .cookie-banner {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}