/* --- Reset & Base Stile --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bg-dark: #07070a;
    --bg-darker: #040406;
    --bg-card: rgba(18, 18, 26, 0.65);
    --bg-card-hover: rgba(26, 26, 38, 0.85);

    --color-purple: #a855f7;
    --color-purple-rgb: 168, 85, 247;
    --color-cyan: #06b6d4;
    --color-cyan-rgb: 6, 182, 212;
    --color-pink: #ec4899;
    --color-pink-rgb: 236, 72, 153;

    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;

    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glow-purple: rgba(168, 85, 247, 0.4);
    --border-glow-cyan: rgba(6, 182, 212, 0.4);

    --shadow-neon-purple: 0 0 25px rgba(168, 85, 247, 0.35);
    --shadow-neon-cyan: 0 0 25px rgba(6, 182, 212, 0.35);
    --shadow-neon-pink: 0 0 25px rgba(236, 72, 153, 0.35);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

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

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.25);
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.5);
}

/* --- Dynamic Spotlight Background --- */
.ambient-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0e0e15 0%, var(--bg-dark) 100%);
}

/*
 * Ambient light orbs – pre-blurred via large soft gradients instead of
 * filter: blur(140px). Safari's compositor chokes on large CSS blur filters
 * combined with continuous animations and mix-blend-mode, causing the page to
 * hang for several seconds on load (especially on mobile). The gradient
 * approach produces the same soft-glow visual effect at zero GPU cost.
 */
.ambient-light-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    /* GPU-promote the layer for smooth transform animations */
    transform: translateZ(0);
}

.orb-purple {
    /* Enlarged from 600px to 900px with softer gradient falloff — no blur filter needed */
    background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, rgba(168, 85, 247, 0.06) 35%, rgba(0, 0, 0, 0) 65%);
    width: 900px;
    height: 900px;
    top: -300px;
    right: -250px;
    animation: floatLightPurple 18s infinite alternate ease-in-out;
}

.orb-cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, rgba(6, 182, 212, 0.05) 35%, rgba(0, 0, 0, 0) 65%);
    width: 850px;
    height: 850px;
    bottom: -300px;
    left: -250px;
    animation: floatLightCyan 22s infinite alternate ease-in-out;
}

.orb-pink {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.03) 35%, rgba(0, 0, 0, 0) 65%);
    width: 650px;
    height: 650px;
    top: 35%;
    left: 25%;
    animation: floatLightPink 25s infinite alternate ease-in-out;
}

@keyframes floatLightPurple {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(-100px, 80px, 0) scale(1.15);
    }
}

@keyframes floatLightCyan {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(120px, -90px, 0) scale(1.1);
    }
}

@keyframes floatLightPink {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(-50px, -50px, 0) scale(1.2);
    }
}

/* Disable ambient animations entirely for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ambient-light-orb {
        animation: none !important;
    }

    .hero-slideshow-slide {
        transition-duration: 0.01s !important;
    }

    .hero-slideshow-slide.active img {
        animation: none !important;
    }
}

/* --- Container & Grid --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

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

/* --- Glassmorphism UI Elements --- */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

/* Safari mobile: reduce backdrop-filter intensity to prevent compositor overload */
@media (max-width: 768px) {
    .glass-panel {
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.text-gradient-pc {
    background: linear-gradient(135deg, var(--color-purple) 20%, var(--color-cyan) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
    background: linear-gradient(135deg, var(--color-pink) 20%, var(--color-purple) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 0.75rem;
    display: inline-block;
    position: relative;
    padding-left: 24px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background-color: var(--color-cyan);
    box-shadow: 0 0 8px var(--color-cyan);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 650px;
    margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple), #7c3aed);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-purple);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-cyan {
    background: linear-gradient(135deg, var(--color-cyan), #0891b2);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-cyan);
}

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 48px;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.social-nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-nav-link {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-nav-link:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.social-nav-link.instagram:hover {
    color: #e1306c;
    text-shadow: 0 0 10px rgba(225, 48, 108, 0.4);
}

.social-nav-link.facebook:hover {
    color: #1877f2;
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.4);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    background: none;
    border: none;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1000;
    }

    .nav-links-wrap {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        visibility: hidden;
        width: 300px;
        height: 100vh;
        background: #09090e;
        border-left: 1px solid var(--border-glass);
        padding: 6rem 2.5rem 2.5rem 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
        z-index: 999;
    }

    .nav-links-wrap.active {
        transform: translateX(0);
        visibility: visible;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-links-wrap .btn {
        width: 100%;
    }
}

/* --- Hero Sektion --- */
.hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 2rem;
    animation: pulseGlowPurple 3s infinite alternate ease-in-out;
}

@keyframes pulseGlowPurple {
    0% {
        box-shadow: 0 0 5px rgba(168, 85, 247, 0.1);
        border-color: rgba(168, 85, 247, 0.2);
    }

    100% {
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.35);
        border-color: rgba(168, 85, 247, 0.5);
    }
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 4.25rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Rotating Keyword Styles */
.txt-rotate {
    display: block;
    height: 1.2em;
    position: relative;
    overflow: hidden;
    margin-top: 0.2rem;
}

.txt-rotate-word {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.txt-rotate-word.active {
    opacity: 1;
    transform: translateY(0);
}

.txt-rotate-word.leaving {
    opacity: 0;
    transform: translateY(-30px);
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Hero Stage Mockup (Spotlights) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Project Slideshow */
.hero-slideshow {
    width: 100%;
    max-width: 420px;
    height: 480px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(168, 85, 247, 0.08);
    cursor: pointer;
}

.hero-slideshow:hover {
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(168, 85, 247, 0.15);
}

.hero-slideshow-slides {
    position: absolute;
    inset: 0;
}

.hero-slideshow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    /* will-change removed: permanent will-change on ALL slides reserves GPU memory
       unnecessarily in Safari. Only the active slide needs GPU promotion. */
}

.hero-slideshow-slide.active {
    opacity: 1;
    z-index: 2;
    will-change: opacity;
}

.hero-slideshow-slide.leaving {
    opacity: 0;
    z-index: 1;
}

.hero-slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ken Burns subtle zoom effect on active slide */
.hero-slideshow-slide.active img {
    animation: kenBurns 6s ease-in-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Overlay gradient + info */
.hero-slideshow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(0deg,
            rgba(7, 7, 10, 0.95) 0%,
            rgba(7, 7, 10, 0.6) 50%,
            rgba(7, 7, 10, 0) 100%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-slideshow-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-cyan);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-slideshow.info-visible .hero-slideshow-cat {
    opacity: 1;
    transform: translateY(0);
}

.hero-slideshow-title {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.3;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.hero-slideshow.info-visible .hero-slideshow-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slideshow-loc {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.hero-slideshow.info-visible .hero-slideshow-loc {
    opacity: 1;
    transform: translateY(0);
}

.hero-slideshow-loc i {
    font-size: 0.7rem;
    color: var(--color-purple);
}

/* Dot Navigation */
.hero-slideshow-dots {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 15;
}

.hero-slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    padding: 0;
}

.hero-slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-slideshow-dot.active {
    background: var(--color-cyan);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual-card {
        height: 380px;
    }
}

/* --- Stats Sektion --- */
.stats {
    padding: 2rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }

    .stats {
        margin-top: 0;
    }
}

/* --- Portfolio Sektion --- */
.portfolio-filters {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-purple), #7c3aed);
    color: #ffffff;
    border-color: var(--color-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: var(--transition-smooth);
}

/* Grid sorting animation placeholders */
.portfolio-item.hidden {
    display: none;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 10, 0) 30%, rgba(7, 7, 10, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, rgba(7, 7, 10, 0.95) 100%);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.portfolio-item:hover::after {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.2);
}

.portfolio-cat {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cyan);
    margin-bottom: 0.5rem;
}

.portfolio-item-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.portfolio-loc {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

/* --- Inquiry / Anfrage Configurator Sektion --- */
.inquiry {
    position: relative;
    background: radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}

.wizard-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem;
}

.wizard-header {
    margin-bottom: 3rem;
}

/* Progress Steps */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.5rem;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
    width: 0%;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.wizard-step-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dim);
    position: relative;
    z-index: 3;
    transition: var(--transition-smooth);
}

.wizard-step-node.active {
    border-color: var(--color-purple);
    color: var(--text-main);
    box-shadow: var(--shadow-neon-purple);
    background: #0d0d14;
}

.wizard-step-node.completed {
    border-color: var(--color-cyan);
    color: #ffffff;
    background: var(--color-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.wizard-step-node i {
    font-size: 0.9rem;
}

/* Wizard Steps Screens */
.wizard-step-panel {
    display: none;
    animation: slideInWizard 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-step-panel.active {
    display: block;
}

@keyframes slideInWizard {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-panel-title {
    font-size: 1.65rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wizard-panel-title i {
    color: var(--color-purple);
}

/* Grid Cards Selection for Step 1 */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.option-card i {
    font-size: 2.2rem;
    color: var(--text-dim);
    transition: var(--transition-smooth);
}

.option-card-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.option-card:hover i {
    color: var(--text-main);
}

.option-card.selected {
    background: rgba(168, 85, 247, 0.06);
    border-color: var(--color-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.option-card.selected i {
    color: var(--color-purple);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* Selection Cards for Guest size */
.guest-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
}

.guest-card {
    padding: 1.2rem;
}

/* Checkbox Cards for services */
.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .service-options {
        grid-template-columns: 1fr;
    }
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.service-icon {
    width: 74px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.service-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.service-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-card.selected {
    background: rgba(6, 182, 212, 0.06);
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.service-card.selected .service-icon {
    background: var(--color-cyan);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

/* Form Styles for dates & text inputs */
.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .form-group-grid {
        grid-template-columns: 1fr;
    }
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-purple);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

textarea.form-input {
    resize: none;
    height: 120px;
}

/* Summary screen */
.summary-container {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

/* Wizard footer buttons */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .wizard-container {
        padding: 2rem 1.5rem;
    }
}

/* --- Über uns Sektion --- */
.about {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    aspect-ratio: 1 / 1;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    transition: var(--transition-smooth);
}

.about-image-wrap:hover img {
    mix-blend-mode: normal;
    transform: scale(1.04);
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-experience-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 2.5rem;
}

.about-experience-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-cyan);
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.about-experience-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.about-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature-text {
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* --- Review & CTA Banner Sektion --- */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.03);
    filter: blur(80px);
    border-radius: 50%;
    top: -50px;
    left: 10%;
}

.cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.google-review-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
}

.google-review-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.google-logo-icon {
    font-size: 1.1rem;
    color: #4285F4;
    flex-shrink: 0;
}

.stars-large {
    font-size: 0.9rem;
    color: #fbbf24;
    display: inline-flex;
    gap: 0.15rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.google-review-text {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile responsive adjustments for the Google Review Badge */
@media (max-width: 480px) {
    .google-review-badge {
        padding: 0.6rem 1.1rem;
        gap: 0.5rem;
    }
    .stars-large {
        font-size: 0.8rem;
        gap: 0.1rem;
    }
    .google-review-text {
        font-size: 0.825rem;
    }
}

.cta-banner-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.cta-banner-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* --- Footer --- */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-social-btn.instagram:hover {
    background: #e1306c;
    border-color: #e1306c;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
}

.footer-social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--text-main);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-icon {
    color: var(--color-cyan);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact-details h5 {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.footer-contact-details p {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom-link:hover {
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 1.5rem;
    }
}

/* --- Modals (Lightbox / Legal) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: rgba(4, 4, 6, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    background: none;
    border: none;
    z-index: 2010;
}

.modal-close:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

/* Lightbox Modal Specifics */
.lightbox-content {
    max-width: 1080px;
    width: 90%;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-media {
    width: 100%;
    height: 520px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.lightbox-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease-in-out;
}

/* Lightbox Gallery Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(7, 7, 10, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    border-color: transparent;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* Slide Indicator Counter */
.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 7, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.lightbox-title {
    font-size: 2rem;
    font-weight: 800;
}

.lightbox-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
}

.lightbox-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.lightbox-meta-label {
    color: var(--text-dim);
}

.lightbox-meta-val {
    font-weight: 600;
}

.lightbox-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .lightbox-content {
        grid-template-columns: 1fr;
        max-height: 85vh;
        overflow-y: auto;
        width: 85%;
    }

    .lightbox-media {
        height: 280px;
    }

    .lightbox-details {
        padding: 2rem 1.5rem;
    }
}

/* Legal Modals Specifics */
.legal-content {
    max-width: 750px;
    width: 90%;
    max-height: 80vh;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.modal.active .legal-content {
    transform: scale(1);
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 600px) {
    .legal-content {
        padding: 2.5rem 1.5rem;
    }
}