/* Shared Components CSS - Wiederverwendbar für alle Seiten */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #00adb5;
    --secondary-color: #006883;
    --accent-color: #56cfe1;
    --gold-color: #f8b400;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --light-text: #e0e0e0;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

/* ===== HEADER WITH 3D EFFECT ===== */
header {
    position: relative;
    padding: 20px;
    text-align: center;
    perspective: 1000px;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: headerGlow 4s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(1.02); }
}

header .logo {
    width: 30%;
    height: auto;
    max-width: 600px;
    margin: 10px auto;
    display: block;
    transform: translateZ(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 173, 181, 0.3));
}

header .logo:hover {
    transform: translateZ(80px) rotateY(5deg);
    filter: drop-shadow(0 15px 30px rgba(248, 180, 0, 0.5));
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(248, 180, 0, 0.4);
}

/* Floating particles background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
/* ===== 3D NAVIGATION ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background: rgba(18, 18, 18, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-logo {
    height: 40px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

nav.scrolled .nav-logo {
    opacity: 1;
    transform: translateX(0);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px) rotateX(10deg);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 173, 181, 0.1);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-menu a::before {
    display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 173, 181, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 50px;
}

.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 173, 181, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
    opacity: 0.7;
}

.button-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.form-button {
    padding: 15px 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 173, 181, 0.4);
}

.form-button:hover::before {
    left: 100%;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #000 100%);
    padding: 60px 20px 30px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 173, 181, 0.2);
}

.footer-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.footer-box p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-box a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.footer-box a:hover {
    color: var(--accent-color);
}

.footer-box a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    header .logo {
        width: 60%;
        max-width: 300px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .button-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-box {
        padding: 25px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    header .logo {
        width: 70%;
        max-width: 250px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .form-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.blue-text {
    color: var(--primary-color);
}

.gold-text {
            background-image: linear-gradient(
                150deg,
                hsl(40, 80%, 30%) 0%,
                hsl(45, 90%, 45%) 25%,
                hsl(50, 100%, 55%) 50%,
                hsl(46, 95%, 50%) 75%,
                hsl(40, 85%, 35%) 100%
            );    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    position: relative;
}
.gold-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
                150deg,
                hsl(40, 80%, 30%) 0%,
                hsl(45, 90%, 45%) 25%,
                hsl(50, 100%, 55%) 50%,
                hsl(46, 95%, 50%) 75%,
                hsl(40, 85%, 35%) 100%
            );    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    filter: blur(3px);
    z-index: -1;
    opacity: 0.3;
}

.white-text {
    color: var(--white);
}

.hellgrauer-text {
    color: var(--light-text);
}

/* ===== CONTACT DETAILS SECTION ===== */
#contact-details-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 80px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-details-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    flex: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.contact-details-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.contact-details-block:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 173, 181, 0.3);
}

.contact-details-block:hover::before {
    opacity: 0.1;
}

.contact-details-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-details-block p {
    margin: 15px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-detail-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.contact-detail-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.contact-detail-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-detail-link:hover::before {
    width: 100%;
}

/* ===== CONTACT IMAGES & MODAL ===== */
.contact-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 173, 181, 0.3);
    position: relative;
    z-index: 2;
    display: block;
    cursor: pointer;
}

.contact-image:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 173, 181, 0.5);
    border-color: var(--gold-color);
}

/* Modal/Lightbox für vergrößerte Bilder */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container {
    position: relative;
    display: inline-block;
}

.modal-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 8px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 173, 181, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    cursor: default;
    position: relative;
    z-index: 2;
}

.modal-image.hide-border {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.rotating-ring {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 408px;
    height: 408px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--gold-color) 0deg,
        var(--gold-color) 45deg,
        var(--primary-color) 45deg,
        var(--primary-color) 90deg,
        var(--gold-color) 90deg,
        var(--gold-color) 135deg,
        var(--primary-color) 135deg,
        var(--primary-color) 180deg,
        var(--gold-color) 180deg,
        var(--gold-color) 225deg,
        var(--primary-color) 225deg,
        var(--primary-color) 270deg,
        var(--gold-color) 270deg,
        var(--gold-color) 315deg,
        var(--primary-color) 315deg,
        var(--primary-color) 360deg
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(248, 180, 0, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 173, 181, 0.6))
            drop-shadow(0 0 60px rgba(248, 180, 0, 0.4));
}

.rotating-ring.active {
    opacity: 1;
    animation: rotateGoldRing 5s linear infinite;
}

.rotating-ring::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 448px;
    height: 448px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(248, 180, 0, 0.6) 0deg,
        rgba(248, 180, 0, 0.6) 45deg,
        rgba(0, 173, 181, 0.6) 45deg,
        rgba(0, 173, 181, 0.6) 90deg,
        rgba(248, 180, 0, 0.6) 90deg,
        rgba(248, 180, 0, 0.6) 135deg,
        rgba(0, 173, 181, 0.6) 135deg,
        rgba(0, 173, 181, 0.6) 180deg,
        rgba(248, 180, 0, 0.6) 180deg,
        rgba(248, 180, 0, 0.6) 225deg,
        rgba(0, 173, 181, 0.6) 225deg,
        rgba(0, 173, 181, 0.6) 270deg,
        rgba(248, 180, 0, 0.6) 270deg,
        rgba(248, 180, 0, 0.6) 315deg,
        rgba(0, 173, 181, 0.6) 315deg,
        rgba(0, 173, 181, 0.6) 360deg
    );
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: none;
}

.rotating-ring.active::before {
    opacity: 0.8;
    animation: rotateGoldRing 100000s linear infinite;
}

@keyframes rotateGoldRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideToCenter {
    from {
        transform: scale(0.3) translate(var(--start-x, 0), var(--start-y, 0));
        opacity: 0.7;
    }
    to {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* ===== MOBILE RESPONSIVE FOR CONTACT DETAILS ===== */
@media (max-width: 768px) {
    #contact-details-section {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }

    .contact-details-block {
        padding: 30px 20px;
    }

    .contact-details-block h2 {
        font-size: 1.5rem;
    }

    .contact-details-block p {
        font-size: 1rem;
    }

    .contact-image {
        width: 100px;
        height: 100px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
}



/* Package-Box Animationen */
        .package-box {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .package-box.animate-left {
            opacity: 1;
            transform: translateX(0) translateY(0);
            animation: slideInFromLeft 0.8s ease-out forwards;
        }

        .package-box.animate-bottom {
            opacity: 1;
            transform: translateX(0) translateY(0);
            animation: slideInFromBottom 0.8s ease-out 0.2s forwards;
        }

        .package-box.animate-right {
            opacity: 1;
            transform: translateX(0) translateY(0);
            animation: slideInFromRight 0.8s ease-out 0.4s forwards;
        }

        @keyframes slideInFromLeft {
            0% { opacity: 0; transform: translateX(-100px) translateY(50px); }
            100% { opacity: 1; transform: translateX(0) translateY(0); }
        }

        @keyframes slideInFromBottom {
            0% { opacity: 0; transform: translateY(100px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInFromRight {
            0% { opacity: 0; transform: translateX(100px) translateY(50px); }
            100% { opacity: 1; transform: translateX(0) translateY(0); }
        }


        /* Workflow Steps Animationen */
        .workflow-steps li {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .workflow-steps li.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Gradient Text Klassen */
        .gradient-text-türkis {
            background: linear-gradient(45deg, #00adb5, #56cfe1);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: bold;
        }

        /* Workflow Section Styles */
        #workflow {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            text-align: center;
        }

        .workflow-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .workflow-container h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .workflow-description {
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #c0c0c0;
            line-height: 1.6;
        }

        .workflow-steps {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .workflow-steps li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .workflow-steps li.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .workflow-content {
            flex: 1;
        }

        .workflow-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #32c8cd;
            line-height: 1.2;
        }

        .workflow-content p {
            color: #c0c0c0;
            line-height: 1.6;
            margin: 0;
        }

        /* Packages Section Styles */
        #our-packages {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            text-align: center;
            color: #e0e0e0;
            position: relative;
            overflow: hidden;
        }

        /* Floating particles background für Our Packages Sektion */
        .our-packages-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .our-packages-particles .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00adb5;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            opacity: 0.6;
        }

        .packages-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .packages-container h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .packages-container > p {
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #c0c0c0;
        }

        .packages-boxes {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            gap: 20px;
            margin-bottom: 40px;
            padding: 20px;
            -webkit-overflow-scrolling: touch;
        }

        .packages-boxes::-webkit-scrollbar {
            display: none;
        }

        .packages-boxes {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .package-box {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 15px !important; /* Wichtig: Ecken bleiben IMMER abgerundet */
            padding: 30px;
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-shrink: 0;
            scroll-snap-align: center;
            opacity: 0;
            transform: translateY(50px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            
            /* Basis-Breite - wird durch Media Queries überschrieben */
            width: calc(100vw - 80px); /* Volle Breite minus Padding und etwas Abstand */
            min-width: 280px; /* Minimale Breite für Lesbarkeit */
            min-height: 500px;
            max-width: 400px; /* Maximale Breite */
            
            /* Sicherstellen dass border-radius nie überschrieben wird */
            border-top-left-radius: 15px !important;
            border-top-right-radius: 15px !important;
            border-bottom-left-radius: 15px !important;
            border-bottom-right-radius: 15px !important;
        }

        /* Desktop - 3 Pakete nebeneinander */
        @media (min-width: 1200px) {
            .package-box {
                width: calc((100vw - 140px) / 3); /* 3 Pakete + Gaps + Container-Padding */
                min-width: 320px;
                max-width: 380px;
            }
            
            .packages-boxes {
                justify-content: center;
                overflow-x: visible;
                scroll-snap-type: none;
                flex-wrap: wrap; /* Falls nicht genug Platz ist */
            }
        }

        /* Tablet - 2 Pakete nebeneinander oder einzeln falls zu eng */
        @media (min-width: 768px) and (max-width: 1199px) {
            .package-box {
                width: calc((100vw - 100px) / 2); /* 2 Pakete + Gap + Padding */
                min-width: 280px;
                max-width: 350px;
            }
            
            /* Falls zu wenig Platz für 2 Pakete, zeige nur 1 */
            @media (max-width: 900px) {
                .package-box {
                    width: calc(100vw - 80px);
                    max-width: 400px;
                }
            }
        }

        /* Mobile - 1 Paket im Viewport, passt sich an Bildschirmbreite an */
        @media (max-width: 767px) {
            .package-box {
                width: calc(100vw - 80px); /* Volle Breite minus Container-Padding */
                min-width: 280px;
                max-width: 100%;
            }
        }

        /* Sehr kleine Bildschirme - weitere Anpassungen */
        @media (max-width: 380px) {
            .package-box {
                width: calc(100vw - 60px);
                min-width: 260px;
                padding: 20px; /* Reduziertes Padding für mehr Platz */
                
                /* Ecken bleiben auch bei sehr kleinen Bildschirmen abgerundet */
                border-radius: 15px !important;
                border-top-left-radius: 15px !important;
                border-top-right-radius: 15px !important;
                border-bottom-left-radius: 15px !important;
                border-bottom-right-radius: 15px !important;
            }
            
            .packages-boxes {
                padding: 15px;
                gap: 15px;
            }
        }

        /* Zusätzliche Sicherheit für border-radius auf allen Bildschirmgrößen */
        .package-box,
        .package-box.highlighted-türkis,
        .package-box.highlighted-gold,
        .package-box:hover,
        .package-box:focus,
        .package-box:active {
            border-radius: 15px !important;
        }

        .package-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 173, 181, 0.2);
        }

        .package-box.highlighted-türkis {
            border: 2px solid #00adb5;
            background: linear-gradient(145deg, rgba(0, 173, 181, 0.15) 0%, rgba(86, 207, 225, 0.1) 100%);
        }

        .package-box.highlighted-gold {
            border: 2px solid #f8b400;
            background: linear-gradient(145deg, rgba(248, 180, 0, 0.15) 0%, rgba(248, 180, 0, 0.1) 100%);
        }

        .package-box h4 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #00adb5;
        }

        .package-box .price {
            font-size: 2.2rem;
            font-weight: bold;
            color: #32c8cd;
            margin-bottom: 20px;
        }

        .package-box .price span {
            font-size: 1rem;
            color: #999;
        }

        .package-box ul {
            list-style-type: none;
            padding: 0;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .package-box ul li {
            position: relative;
            margin-bottom: 12px;
            padding-left: 25px;
            color: #e0e0e0;
        }

        .package-box ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #32c8cd;
            font-size: 1.1rem;
            font-weight: bold;
            line-height: 1;
        }

        .package-button {
            background: linear-gradient(45deg, #00adb5, #56cfe1);
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .package-button:hover {
            background-color: #1e1e1e !important;
            background-image: none !important;
            color: #32c8cd !important;
            border: 1px solid #32c8cd !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(0, 173, 181, 0.4) !important;
        }
        .package-button a {
            color: inherit;
            text-decoration: none;
        }

        /* Contact Section ID */
        #contact {
            scroll-margin-top: 80px;
        }

        /* Carousel Navigation Dots */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background-color: #32c8cd;
            transform: scale(1.2);
        }

        /* Desktop - verstecke Navigation */
        @media (min-width: 1200px) {
            .carousel-nav {
                display: none;
            }
        }



        #workflow {
            padding: 50px;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            text-align: center;
        }

        .workflow-container {
            max-width: 800px;
            margin: auto;
        }

        .workflow-container h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .workflow-description {
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #c0c0c0;
            line-height: 1.6;
        }

        /* Schritte mit Icon-Box */
        .workflow-steps {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left; /* Text linksbündig */
        }

        .workflow-steps li {
            display: flex;
            align-items: baseline; /* Überschrift und Icon oben ausrichten */
            margin-bottom: 0px;
            opacity: 0; /* Unsichtbar vor der Animation */
            transform: translateY(50px); /* Startpunkt: nach unten verschoben */
            transition: opacity 0.5s ease, transform 0.5s ease; /* Sanfte Animation */
        }

        .workflow-steps li.visible {
            opacity: 1; /* Sichtbar machen */
            transform: translateY(0); /* Auf ursprüngliche Position verschieben */
        }

        .icon-container {
            background-image: linear-gradient(
                150deg,
                hsl(188, 80%, 15%) 0%,
                hsl(188, 80%, 20%) 50%,
                hsl(188, 80%, 25%) 100%
            );
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            margin-right: 20px;
            flex-shrink: 0;
            transform: translateY(35%); /* Feine Justierung */
        }

        .icon-image {
            max-width: 70%;
            max-height: 70%;
            object-fit: contain;
        }

        .workflow-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #32c8cd;
            line-height: 1.2;
        }

        .workflow-content p {
            color: #c0c0c0;
            line-height: 1.6;
        }








        #our-packages {
            padding: 50px;
            background-color: #121212;
            text-align: center;
            color: #e0e0e0;
        }

        .packages-container {
            max-width: 1200px;
            margin: auto;
        }

        .packages-container h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .packages-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            align-items: stretch;
            perspective: 1000px; /* Perspektive für 3D-Effekt */
        }

        .package-box {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 15px !important;
            padding: 30px;
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-shrink: 0;
            scroll-snap-align: center;
            opacity: 0;
            transform: translateY(50px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            width: calc(100vw - 80px);
            min-width: 280px;
            max-width: 400px;
            border-top-left-radius: 15px !important;
            border-top-right-radius: 15px !important;
            border-bottom-left-radius: 15px !important;
            border-bottom-right-radius: 15px !important;
        }

        /* Animationen für die Boxen */
        .package-box.animate-left {
            animation: slide-in-left 1s ease forwards;
        }

        .package-box.animate-bottom {
            animation: slide-in-bottom 1s ease forwards;
        }

        .package-box.animate-right {
            animation: slide-in-right 1s ease forwards;
        }

        /* Keyframe-Animationen */
        @keyframes slide-in-left {
            0% {
                transform: rotateY(90deg) translateX(-100%);
                opacity: 0;
            }
            100% {
                transform: rotateY(0deg) translateX(0);
                opacity: 1;
            }
        }

        @keyframes slide-in-bottom {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slide-in-right {
            0% {
                transform: rotateY(-90deg) translateX(100%);
                opacity: 0;
            }
            100% {
                transform: rotateY(0deg) translateX(0);
                opacity: 1;
            }
        }

        /* Highlighted Stile */
        .package-box.highlighted-türkis {
            background-image: linear-gradient(
                150deg,
                hsl(185, 80%, 25%) 0%,
                hsl(187, 90%, 30%) 50%,
                hsl(190, 100%, 35%) 100%
            );
            color: #fff;
        }

        .package-box.highlighted-gold {
                background-image: linear-gradient(
                150deg,
                hsl(40, 80%, 30%) 0%,
                hsl(45, 90%, 45%) 25%,
                hsl(50, 100%, 55%) 50%,
                hsl(46, 95%, 50%) 75%,
                hsl(40, 85%, 35%) 100%
            );
            color: #fff;
        }

        /* Text und Button Stile */
        .package-box h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .package-box .price {
            font-size: 2rem;
            font-weight: bold;
            color: #32c8cd;
            margin-bottom: 15px;
        }

        .package-box .price span {
            font-size: 1rem;
            color: #999;
        }

        .package-box ul {
            list-style-type: none;
            padding: 0;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .package-box ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 25px;
        }

        .package-box ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #32c8cd;
            font-size: 1rem;
            line-height: 1;
        }

        .package-box .package-button {
            background-color: #32c8cd;
            color: #121212;
            padding: 10px 20px;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
            text-decoration: none;
        }

        .package-box .package-button:hover {
            background: #000000 !important;
            background-color: #000000 !important;
            background-image: none !important;
            color: #00adb5 !important;
            border: 2px solid #00adb5 !important;
            text-decoration: none !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(0, 173, 181, 0.4) !important;
        }
        .package-button:hover{
            background: #000000 !important;
            background-color: #000000 !important;
            background-image: none !important;
            color: #00adb5 !important;
            border: 2px solid #00adb5 !important;
            text-decoration: none !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(0, 173, 181, 0.4) !important;
        }
        
        .package-button a {
            color: inherit;
            text-decoration: none;
        }

        /* Hover-Effekt für die Texte */
        .hover-box {
            display: none;
            position: absolute;
            top: 0;
            left: 110%;
            margin-left: 10px;
            padding: 10px;
            background-color: #1e1e1e;
            color: #e0e0e0;
            border: 1px solid #32c8cd;
            border-radius: 5px;
            width: 250px;
            z-index: 10;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }




        /* Mobile Responsive */
        @media (max-width: 768px) {
            

            .hero {
                min-height: 60vh;
                padding: 0 10px;
            }

            .hero h1 {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            /* Workflow Section Mobile */
            #workflow {
                padding: 40px 15px;
            }

            .workflow-container {
                max-width: 100%;
                padding: 0 10px;
            }

            .workflow-container h2 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .workflow-description {
                font-size: 1rem;
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .workflow-steps li {
                flex-direction: column;
                text-align: center;
                margin-bottom: 25px;
                padding: 0 10px;
            }

            .icon-container {
                margin-right: 0;
                margin-bottom: 15px;
                transform: translateY(0);
                width: 60px;
                height: 60px;
                align-self: center;
            }

            .workflow-content {
                text-align: center;
            }

            .workflow-content h3 {
                font-size: 1.3rem;
                margin-bottom: 8px;
            }

            .workflow-content p {
                font-size: 0.95rem;
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 50vh;
            }

            /* Workflow Section Extra Small Mobile */
            #workflow {
                padding: 30px 10px;
            }

            .workflow-container h2 {
                font-size: 1.8rem;
            }

            .workflow-description {
                font-size: 0.95rem;
                padding: 0 5px;
            }

            .workflow-steps li {
                margin-bottom: 20px;
                padding: 0 5px;
            }

            .icon-container {
                width: 50px;
                height: 50px;
            }

            .workflow-content h3 {
                font-size: 1.2rem;
            }

            .workflow-content p {
                font-size: 0.9rem;
            }
        }