/* ========================================
   DISCOTEC - Bold & Colorful Design
   ======================================== */

:root {
    --color-red: #ff6b6b;
    --color-teal: #4ecdc4;
    --color-yellow: #ffe66d;
    --color-purple: #c9b1ff;
    --bg-dark: #0f0f0f;
    --bg-darker: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #888888;
    --font-main: 'Space Grotesk', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========================================
   HEADER
   ======================================== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    transition: background 0.3s, box-shadow 0.3s;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 0;
    color: white;
}

.logo span {
    display: none;
}

.main-nav > ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav > ul > li > a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav > ul > li > a:hover {
    color: var(--color-teal);
}

.btn-admin {
    border: 1px solid white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
}

.btn-admin:hover {
    background: white;
    color: var(--bg-dark);
}

.lang-switch {
    opacity: 0.6;
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    color: var(--text-gray);
}

.dropdown-menu a:hover {
    background: rgba(78, 205, 196, 0.1);
    border-left-color: var(--color-teal);
    padding-left: 25px;
    color: var(--text-white);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.2rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    position: relative;
    background: var(--bg-dark) !important;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.7;
}

.hero.has-video::before {
    background-image: none !important;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.7;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -4px;
    text-shadow: none;
    margin-bottom: 20px;
}

.hero-content h2 .line1 { color: var(--color-red); }
.hero-content h2 .line2 { color: var(--color-teal); }
.hero-content h2 .line3 { color: var(--color-yellow); }

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-hint:hover {
    color: var(--color-teal);
}

.scroll-hint i {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--color-red);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: #1a1a1a;
    color: white;
    border: 1px solid #333;
}

.btn-secondary:hover {
    background: #222;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-main);
    background: var(--color-red);
    color: var(--bg-dark);
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button.secondary {
    background: #1a1a1a;
    color: white;
    border: 1px solid #333;
}

.cta-button.secondary:hover {
    background: #222;
    transform: none;
    box-shadow: none;
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
    background: var(--color-red);
    color: var(--bg-dark);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-right: 40px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: white;
}

.section-title::after {
    display: none;
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 500px;
    font-size: 1.1rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 120px 60px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

/* Services Carousel Wrapper */
.services-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
    transform: none;
}

/* Auf Mobile: nur Swipe, Chevrons verstecken */
@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
    .services-carousel {
        gap: 0;
    }
}

.services-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    scrollbar-width: thin;
    scrollbar-color: #333 var(--bg-dark);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.services-grid::-webkit-scrollbar {
    height: 6px;
}

.services-grid::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.services-grid::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.service-card {
    flex: 0 0 380px;
    height: 480px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    border: none;
    text-align: left;
    padding: 0;
    scroll-snap-align: start;
}

.service-card:hover {
    transform: none;
    border-color: transparent;
}

.service-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .card-image {
    transform: scale(1.1);
}

/* Service Icon Badge - runder Badge oben rechts */
.service-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-icon-badge i {
    font-size: 1.25rem;
    color: white;
}

.service-card:hover .service-icon-badge {
    transform: scale(1.1);
    border-color: var(--color-teal);
}

.service-card:hover .service-icon-badge i {
    color: var(--color-teal);
}

/* Icon colors matching service number colors */
.service-card:nth-child(1) .service-icon-badge i,
.service-card:nth-child(5) .service-icon-badge i,
.service-card:nth-child(9) .service-icon-badge i { color: var(--color-red); }

.service-card:nth-child(2) .service-icon-badge i,
.service-card:nth-child(6) .service-icon-badge i,
.service-card:nth-child(10) .service-icon-badge i { color: var(--color-teal); }

.service-card:nth-child(3) .service-icon-badge i,
.service-card:nth-child(7) .service-icon-badge i,
.service-card:nth-child(11) .service-icon-badge i { color: var(--color-yellow); }

.service-card:nth-child(4) .service-icon-badge i,
.service-card:nth-child(8) .service-icon-badge i,
.service-card:nth-child(12) .service-icon-badge i { color: var(--color-purple); }

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 30%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.service-num {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 4.5rem;
    font-weight: 700;
    opacity: 0.2;
    line-height: 1;
}

.service-card:nth-child(1) .service-num,
.service-card:nth-child(5) .service-num,
.service-card:nth-child(9) .service-num { color: var(--color-red); }

.service-card:nth-child(2) .service-num,
.service-card:nth-child(6) .service-num,
.service-card:nth-child(10) .service-num { color: var(--color-teal); }

.service-card:nth-child(3) .service-num,
.service-card:nth-child(7) .service-num,
.service-card:nth-child(11) .service-num { color: var(--color-yellow); }

.service-card:nth-child(4) .service-num,
.service-card:nth-child(8) .service-num,
.service-card:nth-child(12) .service-num { color: var(--color-purple); }

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.service-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.icon-box {
    display: none;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--color-teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-more:hover {
    color: white;
    text-decoration: none;
}

/* ========================================
   STATS
   ======================================== */
.stats {
    padding: 100px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat:nth-child(1) .stat-num { color: var(--color-red); }
.stat:nth-child(2) .stat-num { color: var(--color-teal); }
.stat:nth-child(3) .stat-num { color: var(--color-yellow); }
.stat:nth-child(4) .stat-num { color: var(--color-purple); }

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 120px 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: none;
}

.about-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.about-badge span {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    flex: none;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    font-size: 1.4rem;
    color: var(--color-teal);
}

.about-feature span {
    font-weight: 500;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    padding: 120px 60px;
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   NEWS
   ======================================== */
.news {
    padding: 120px 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.news-item {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #222;
    transition: all 0.3s;
    overflow: hidden;
}

.news-item.has-image {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 0;
    align-items: center;
}

.news-item.has-image .news-content {
    padding: 35px 0 35px 35px;
}

.news-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 20px 0;
    max-width: 350px;
}

.news-image img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s;
}

.news-item:hover .news-image img {
    transform: scale(1.02);
}

.news-item:hover {
    border-color: var(--color-teal);
    transform: translateY(-5px);
}

/* Mobile: Bild unter Text */
@media (max-width: 768px) {
    .news-item.has-image {
        grid-template-columns: 1fr;
    }
    .news-item.has-image .news-content {
        padding: 25px;
        order: 1;
    }
    .news-image {
        order: 2;
        max-width: 100%;
        padding: 0 20px 20px 20px;
    }
    .news-image img {
        max-height: 250px;
        width: 100%;
        object-fit: contain;
    }
}

.news-date {
    font-size: 0.85rem;
    color: var(--color-teal);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-item h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.4rem;
}

.news-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: 0;
}

.contact-info {
    background: var(--color-teal);
    color: var(--bg-dark);
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: auto;
}

.contact-info h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.contact-info > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info .contact-item i {
    font-size: 1.5rem;
    color: var(--bg-dark);
    width: auto;
}

.contact-info .contact-item a,
.contact-info .contact-item span {
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-form {
    background: var(--bg-dark);
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: auto;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    padding: 15px 0;
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: white;
    transition: border-color 0.3s;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

/* Contact Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(0, 217, 160, 0.15);
    border: 1px solid var(--color-teal);
    color: var(--color-teal);
}

.form-message.error {
    background: rgba(255, 77, 109, 0.15);
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

.form-group label .required {
    color: var(--color-red);
}

#contactSubmit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-wrapper {
    display: contents;
}

/* ========================================
   FOOTER
   ======================================== */
.main-footer {
    background: var(--bg-darker);
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #1a1a1a;
    margin-top: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-teal);
}

.footer-links .divider {
    color: #333;
}

.footer-grid {
    display: none;
}

.copyright {
    color: #444;
    font-size: 0.9rem;
    border-top: none;
    padding-top: 0;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: transparent;
    line-height: normal;
    margin-right: 0;
}

.social-links a:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
    color: var(--bg-dark);
}

/* ========================================
   SERVICE DETAIL PAGE
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    padding: 160px 0 80px !important;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-red), var(--color-purple));
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-header h1 {
    font-size: 3.5rem !important;
    letter-spacing: -2px;
}

.page-header .icon-display {
    font-size: 4rem;
    margin-bottom: 25px;
}

.page-header .icon-display i {
    color: var(--color-teal) !important;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 60px;
}

.page-header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1.1;
}

.page-description {
    color: #888;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 60px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-grid.no-image {
    grid-template-columns: 1fr;
}

.service-content {
    font-size: 1.15rem !important;
    line-height: 2 !important;
    color: #bbb;
}

.service-cta {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-image-wrapper {
    position: sticky;
    top: 120px;
}

.service-image-wrapper img {
    width: 100%;
    border-radius: 20px;
}

.service-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 2rem;
}

/* Service Beispielbilder Galerie */
.service-gallery {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-gallery h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-gallery-item:hover img {
    transform: scale(1.1);
}

.service-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.service-gallery-item:hover::after {
    background: rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Header scroll effect */
.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .services,
    .about,
    .gallery,
    .news {
        padding: 100px 40px;
    }
}

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 80px 40px;
    }
    
    .service-card {
        flex: 0 0 320px;
    }
}

/* ========================================
   HERO MODE HEADER (Desktop Burger in Hero)
   ======================================== */

/* Im Hero-Bereich: Nur Logo + Burger auf Desktop */
@media (min-width: 769px) {
    .main-header.hero-mode {
        background: transparent;
        backdrop-filter: none;
    }
    
    .main-header.hero-mode .main-nav > ul > li:not(.nav-burger) {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .main-header.hero-mode .nav-burger {
        display: block !important;
    }
    
    /* Nach dem Scrollen: Volle Navigation */
    .main-header:not(.hero-mode) .main-nav > ul > li {
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.3s ease 0.1s;
    }
    
    .main-header:not(.hero-mode) .nav-burger {
        display: none !important;
    }
    
    /* Desktop Burger Button (nur im Hero-Modus) */
    .nav-burger {
        display: none;
    }
    
    .nav-burger .burger-icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        padding: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-burger .burger-icon:hover {
        border-color: var(--color-teal);
        background: rgba(78, 205, 196, 0.1);
    }
    
    .nav-burger .burger-icon span {
        display: block;
        width: 20px;
        height: 2px;
        background: white;
        margin: 2px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-burger .burger-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .nav-burger .burger-icon.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-burger .burger-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

/* Fullscreen Menu für Desktop (im Hero-Mode) */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(10, 10, 10, 0.99));
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 100px 20px 50px;
    box-sizing: border-box;
}

.fullscreen-nav.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-nav > ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: auto 0;
    flex-shrink: 0;
}

.fullscreen-nav ul li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fullscreen-nav.active ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation */
.fullscreen-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-nav.active ul li:nth-child(5) { transition-delay: 0.3s; }
.fullscreen-nav.active ul li:nth-child(6) { transition-delay: 0.35s; }
.fullscreen-nav.active ul li:nth-child(7) { transition-delay: 0.4s; }

.fullscreen-nav ul li a {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    position: relative;
}

.fullscreen-nav ul li a:hover {
    color: var(--color-teal);
}

.fullscreen-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--color-teal);
    transition: width 0.3s ease, left 0.3s ease;
}

.fullscreen-nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

/* Submenu in Fullscreen */
.fullscreen-nav .submenu {
    display: none;
    padding-top: 15px;
}

.fullscreen-nav .has-submenu.open .submenu {
    display: block;
}

.fullscreen-nav .submenu li {
    margin: 10px 0;
}

.fullscreen-nav .submenu li a {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.fullscreen-nav .submenu li a:hover {
    color: var(--color-teal);
}

.fullscreen-nav .lang-switch {
    margin-top: 40px;
}

.fullscreen-nav .lang-switch a {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0 10px;
}

.fullscreen-nav .lang-switch a:hover,
.fullscreen-nav .lang-switch a.active {
    color: white;
}

/* Close Button für Fullscreen Menu - DEAKTIVIERT, Burger-Icon-X wird verwendet */
.fullscreen-nav-close {
    display: none;
}

@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(15, 15, 15, 0.95));
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav > ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .main-nav > ul > li > a {
        font-size: 1.5rem;
        padding: 10px 30px;
    }
    
    .main-nav > ul > li > a:hover {
        color: var(--color-teal);
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        text-align: center;
    }
    
    .nav-dropdown > a::after {
        display: inline-block;
        margin-left: 8px;
    }
    
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu li {
        width: auto;
    }
    
    .dropdown-menu a {
        font-size: 1rem;
        padding: 8px 20px;
        text-align: center;
        border: none;
        color: var(--text-gray);
    }
    
    .dropdown-menu a:hover {
        background: transparent;
        border: none;
        padding-left: 20px;
        color: var(--color-teal);
    }
    
    .main-nav .btn-admin {
        margin-top: 20px;
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 40px 20px;
        min-height: 100vh;
    }
    
    .hero::before {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .hero-video-wrap {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .services,
    .about,
    .gallery,
    .news {
        padding: 60px 20px;
    }
    
    .services-scroll {
        gap: 15px;
        padding: 20px 20px 30px;
        scroll-snap-type: x mandatory;
    }
    
    .service-card {
        flex: 0 0 280px;
        height: 350px;
        scroll-snap-align: center;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 60px 20px;
    }
    
    .stat-num {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-badge {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -10px;
    }
    
    .about-badge span {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .contact {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 50px 20px;
    }
    
    .contact-info h3 {
        font-size: 2rem;
    }
    
    .contact-form h3 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 18px;
        font-size: 1rem;
    }
    
    .main-footer {
        flex-direction: column;
        gap: 25px;
        padding: 35px 20px;
        text-align: center;
    }
    
    .main-footer .logo a {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-links a {
        font-size: 1.3rem;
        width: 45px;
        height: 45px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Page header mobile */
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem !important;
    }
    
    .page-header .icon-display {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .page-header-content {
        padding: 0 20px;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .service-detail-section {
        padding: 40px 20px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content {
        font-size: 1rem !important;
        line-height: 1.8 !important;
        padding: 0;
    }
    
    .service-cta {
        margin-top: 40px;
        flex-direction: column;
    }
    
    .service-cta .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .service-image-wrapper {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .service-image-badge {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        bottom: -10px;
        right: -10px;
    }
    
    .scroll-hint {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-num {
        font-size: 2.8rem;
    }
    
    .service-card {
        flex: 0 0 260px;
        height: 320px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .about-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto 0;
    }
}

/* ========================================
   ADMIN MAINTENANCE ALERT
   ======================================== */
.admin-maintenance-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-red), #e05555);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 500;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
    font-size: 14px;
}

.admin-maintenance-alert a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}

.admin-maintenance-alert a:hover {
    text-decoration: none;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.99));
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    z-index: 99998;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookieConsentBanner.visible {
    transform: translateY(0);
    opacity: 1;
}

#cookieConsentBanner .cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

#cookieConsentBanner .cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 280px;
}

#cookieConsentBanner .cookie-icon {
    font-size: 2rem;
    color: var(--color-teal);
    flex-shrink: 0;
}

#cookieConsentBanner .cookie-text strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

#cookieConsentBanner .cookie-text p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

#cookieConsentBanner .cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

#cookieConsentBanner .cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

#cookieConsentBanner .cookie-btn-decline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

#cookieConsentBanner .cookie-btn-decline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

#cookieConsentBanner .cookie-btn-accept {
    background: var(--color-teal);
    color: var(--bg-dark);
}

#cookieConsentBanner .cookie-btn-accept:hover {
    background: #5ce0d8;
    transform: translateY(-2px);
}

#cookieConsentBanner .cookie-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
}

#cookieConsentBanner .cookie-link:hover {
    color: var(--color-teal);
}

@media (max-width: 768px) {
    #cookieConsentBanner {
        padding: 15px 20px;
    }
    
    #cookieConsentBanner .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    #cookieConsentBanner .cookie-text {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    #cookieConsentBanner .cookie-buttons {
        justify-content: center;
    }
    
    #cookieConsentBanner .cookie-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}