/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-petrol: #1e5f74;
    --accent-gold: #d4af37;
    --accent-light-gold: #f4e4c1;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Verhindere Scrollen im Hintergrund wenn Mobile-Menu offen */
body.menu-open {
    overflow: hidden !important;
}

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

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

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Allow mobile menu to overflow without clipping */
    overflow: visible;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    line-height: 1.2;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    line-height: 1.2;
}

/* Hero Logo */
.hero-logo-img {
    max-width: min(480px, 80vw);
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
    animation: fadeInUp 1s ease-out backwards;
}

/* ==========================================
   HAMBURGER BUTTON
   ========================================== */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    /* Must sit above the fullscreen mobile menu overlay */
    z-index: 10001;
    position: relative;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition);
    display: block;
}

/* Hamburger → X animation */
.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);
}

/* ==========================================
   NAV MENU – DESKTOP (>= 969px)
   ========================================== */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ==========================================
   DROPDOWN – DESKTOP
   ========================================== */

.dropdown {
    position: relative;
}

/* Invisible hover bridge so the menu doesn't close when moving the mouse down */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    display: none;
}

.dropdown:hover::before {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    min-width: 250px;
    padding: 1rem 0 0.5rem 0;
    list-style: none;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    z-index: 1000;
    /* Hidden by default; revealed on hover */
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

/* Override the underline pseudo-element for dropdown links */
.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding-left: 2rem;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.8em;
}

/* ==========================================
   NAV MENU – MOBILE (<= 968px)
   ========================================== */

@media (max-width: 968px) {
    /* Show hamburger */
    .mobile-menu-btn {
        display: flex;
    }

    /* Fullscreen overlay menu, slides in from the right */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
        /* Off-screen to the right; slides in when .active is added */
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 10000 !important;
        overflow-y: auto !important;
        margin: 0 !important;
        padding: 2rem !important;
        list-style: none !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
    }

    /* Full-width list items */
    .nav-menu > li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    /* Larger tap targets for top-level links */
    .nav-menu li a,
    .nav-menu .dropdown-toggle {
        font-size: 1.5rem !important;
        padding: 1rem !important;
        display: block;
        color: white !important;
    }

    /* Dropdown on mobile – static, toggled by JS .active class */
    .nav-menu .dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-menu .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        background: rgba(255, 255, 255, 0.07);
        margin-top: 0.5rem;
        padding: 0.5rem;
        border-radius: 0.5rem;
        border: none;
        box-shadow: none;
        min-width: unset;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .nav-menu .dropdown-menu li a {
        font-size: 1.1rem !important;
        padding: 0.75rem 1rem !important;
        color: rgba(255,255,255,0.8) !important;
    }

    /* Remove hover bridge on mobile */
    .dropdown::before {
        display: none !important;
    }
}

/* ==========================================
   HERO SECTION - FIX
   ========================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    /* WICHTIG: z-index niedriger als folgende Sections */
    z-index: 1;
}

/* Subtle animated grid overlay */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(30, 95, 116, 0.45) 0%, transparent 60%),
        linear-gradient(170deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10,10,10,0.92) 100%);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.15);
    z-index: 2;
}

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

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-title {
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 0 80px rgba(0,0,0,0.8);
    animation: fadeInUp 0.8s ease-out 0.15s backwards;
}

.hero-title-accent {
    color: var(--accent-gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.45s backwards;
}

.hero-tags span {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    transition: var(--transition);
}

.hero-tags span:hover {
    color: var(--accent-gold);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    background: var(--accent-light-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.cta-button-ghost {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button-ghost:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

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

/* ==========================================
   KOMPETENZ SECTION - FIX
   ========================================== */

.kompetenz-section {
    background: var(--secondary-dark);
    padding: 7rem 0;
    /* WICHTIG: z-index höher als Hero, damit sie ÜBER der Hero scrollt */
    position: relative;
    z-index: 10;
}

.kompetenz-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.kompetenz-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.kompetenz-header .section-title {
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.kompetenz-intro {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.kompetenz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.kompetenz-card {
    background: var(--secondary-dark);
    padding: 2.8rem 2.2rem;
    transition: background 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.kompetenz-card:hover {
    background: rgba(30, 95, 116, 0.15);
}

.kompetenz-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.kompetenz-icon svg {
    width: 100%;
    height: 100%;
}

.kompetenz-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

.kompetenz-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-light-gold);
    margin: 0;
}

.kompetenz-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.kompetenz-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.5rem;
}

.kompetenz-link:hover {
    color: var(--accent-light-gold);
    letter-spacing: 1px;
}

.kompetenz-card--highlight {
    background: rgba(212, 175, 55, 0.06);
    border-left: 2px solid var(--accent-gold);
    justify-content: center;
}

.kompetenz-card--highlight:hover {
    background: rgba(212, 175, 55, 0.1);
}

.kompetenz-highlight-text .kompetenz-num {
    font-size: 2rem;
    letter-spacing: 0;
    color: rgba(212, 175, 55, 0.3);
}

.kompetenz-highlight-text h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

@media (max-width: 968px) {
    .kompetenz-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-tags {
        gap: 0.4rem;
    }
}

/* ==========================================
   NETWORK SECTION
   ========================================== */

.network-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--primary-dark);
    padding: 0;
}

#background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('https://soc-ads.de/images/eventSoC.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 70vh;
    width: 90vw;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

#canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 5;
}

#canvas-container.visible {
    opacity: 1;
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.4;
}

.network-node {
    position: absolute;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.4s ease;
    user-select: none;
    z-index: 100;
    display: block;
    font-weight: 300;
}

.network-node:hover {
    color: #00d4ff !important;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    font-weight: 500;
    z-index: 1000;
}

/* Dual display: desktop vs mobile version of the network section */
@media (min-width: 769px) {
    .network-desktop { display: block; }
    .network-mobile  { display: none;  }
}

@media (max-width: 768px) {
    .network-desktop { display: none;  }
    .network-mobile  { display: block; }
}

/* ==========================================
   SECTION COMMON
   ========================================== */

section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-light-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 4rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    background: var(--primary-dark);
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-petrol), var(--accent-gold));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-block:nth-child(1) .service-image-placeholder {
    background-image: url('images/stage-lighting.jpg');
}

.service-block:nth-child(2) .service-image-placeholder {
    background-image: url('images/recording-studio.jpg');
}

.service-block:nth-child(3) .service-image-placeholder {
    background-image: url('images/event-tent.jpg');
}

.service-text h3 {
    font-size: 2rem;
    color: var(--accent-light-gold);
    margin-bottom: 1rem;
}

.service-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-text ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.service-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    border-radius: 5px;
    transition: var(--transition);
}

.service-button:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    background: var(--secondary-dark);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--primary-dark);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-petrol), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--accent-light-gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
    background: var(--accent-petrol);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background: var(--secondary-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--accent-light-gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-box {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-gold);
}

.feature-box h4 {
    font-size: 1.5rem;
    color: var(--accent-light-gold);
    margin-bottom: 1.5rem;
}

.feature-box ul {
    list-style: none;
}

.feature-box li {
    padding: 0.7rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.feature-box li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery-section {
    background: var(--primary-dark);
}

.gallery-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 300px;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-text {
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

.gallery-text h3 {
    font-size: 1.5rem;
    color: var(--accent-light-gold);
    margin-bottom: 0.5rem;
}

.gallery-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    background: var(--primary-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--accent-light-gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--secondary-dark);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin: 0;
    flex: 1;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: var(--accent-light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    background: var(--secondary-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--primary-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--accent-light-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column p {
    color: var(--text-gray);
    line-height: 1.8;
}

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

.footer-column ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-gray);
}

/* ==========================================
   RESPONSIVE – TABLET & MOBILE (>= 968px breakpoint)
   ========================================== */

@media (max-width: 968px) {
    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

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


/* About-Intro innerhalb Kompetenz Section */
.about-intro {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: var(--accent-gold, #a3e635);
    font-weight: 600;
}

@media (min-width: 768px) {
    .about-intro p {
        font-size: 1.25rem;
    }
}

/* Anpassung der Kompetenz-Header für mehr Abstand */
.kompetenz-header {
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .kompetenz-header {
        margin-bottom: 5rem;
    }
}