        /* ========== RESET & VARIABLES ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        :root {
            --primary-black: #0a0a0a;
            --secondary-black: #111111;
            --dark-gray: #1a1a1a;
            --medium-gray: #2a2a2a;
            --light-gray: #3a3a3a;
            --gold: #d4a574;
            --gold-hover: #e4b584;
            --gold-dark: #c49564;
            --white: #ffffff;
            --text-gray: #999999;
            --border-color: rgba(212, 165, 116, 0.2);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========== TYPOGRAPHY ========== */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        h1 { font-size: 4rem; }
        h2 { font-size: 3rem; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; }

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

        a {
            text-decoration: none;
            color: var(--gold);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--gold-hover);
        }

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

        .section {
            padding: 100px 0;
            position: relative;
        }

        .text-center { text-align: center; }
        .text-gold { color: var(--gold); }
        .bg-dark { background-color: var(--dark-gray); }
        .bg-darker { background-color: var(--secondary-black); }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            touch-action: manipulation;
        }

        .btn:hover {
            color: var(--primary-black);
            background: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
        }

        .btn-solid {
            background: var(--gold);
            color: var(--primary-black);
        }

        .btn-solid:hover {
            background: var(--gold-hover);
        }

        /* ========== LOADING SCREEN ========== */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-black);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
        }

        .loader-inner {
            width: 60px;
            height: 60px;
            border: 3px solid var(--dark-gray);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

/* ========== HEADER & NAVIGATION ========== */
/* ---------- HEADER ---------- */
header{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  display:flex;flex-direction:column;        /* ✔︎ Menü + Ticker stapeln */
  background:rgba(10,10,10,.95);
  backdrop-filter:blur(10px);
  transition:all .4s cubic-bezier(.4,0,.2,1);
  padding:10px 0 0;                          /* oben 10 px, unten 0 px */
}
header.scrolled{
  background:rgba(10,10,10,.98);
  backdrop-filter:blur(20px);
  box-shadow:0 10px 30px rgba(0,0,0,.5);
  padding:5px 0 0;                           /* oben 5 px bei Scroll */
}

/* ---------- LIVE-TICKER (jetzt nur noch relativ) ---------- */
.live-ticker{
  position:relative;        /* KEIN fixed! */
  left:0;right:0;
  /* deine bisherigen Styles (Hintergrund, Shadow, …) bleiben */
}

/* ---------- MAIN: Abstand unter dem Header einstellen ---------- */
main{
  margin-top:calc( var(--header-height,140px) ); /* Fallback 140 px */
}

/* automatische Höhe via JS setzen (winziges Snippet s.u.) */


        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }

        /* Animated Logo */
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-family: 'Oswald', sans-serif;
            position: relative;
            transition: all 0.3s ease;
        }

        .logo::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .logo:hover::before {
            transform: scaleX(1);
        }

        .logo:hover {
            text-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
            transform: translateY(-2px);
        }

        /* Creative Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
            padding-left: 60px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 10px 0;
            position: relative;
            overflow: hidden;
            display: block;
            transition: all 0.3s ease;
        }

        /* Creative hover effect */
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
            margin-right: -10px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--gold);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* ========== LIVE TICKER (UNDER HEADER) - PREMIUM DESIGN ========== */
        .live-ticker {
            position: fixed;
            top: 85px;
            left: 0;
            right: 0;
            background: linear-gradient(135deg,
                rgba(26, 26, 26, 0.95) 0%,
                rgba(17, 17, 17, 0.98) 50%,
                rgba(10, 10, 10, 0.95) 100%);
            border-bottom: 1px solid rgba(212, 165, 116, 0.3);
            border-top: 1px solid rgba(212, 165, 116, 0.15);
            z-index: 998;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.5),
                0 1px 3px rgba(212, 165, 116, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px) saturate(180%);
        }

        header.scrolled ~ .live-ticker {
            top: 75px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
        }

        /* Glassmorphic Background Animation */
        .ticker-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
            animation: breathe 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes breathe {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.02); }
        }

        .ticker-content {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.95rem;
            animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
            position: relative;
            padding: 8px 16px;
            border-radius: 12px;
            background: rgba(212, 165, 116, 0.02);
        }

        .ticker-item:hover {
            transform: translateY(-3px) scale(1.03);
            background: rgba(212, 165, 116, 0.08);
            box-shadow: 0 8px 16px rgba(212, 165, 116, 0.15);
        }

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

        /* Tooltip for waiting time */
        #waitingTime[data-tooltip]:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            z-index: 10;
            pointer-events: none;
        }

        #waitingTime[data-tooltip]:hover::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-bottom-color: rgba(0, 0, 0, 0.9);
            z-index: 10;
        }

        /* Premium Icon Design */
        .ticker-icon {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.12) 0%, rgba(212, 165, 116, 0.05) 100%);
            border: 2px solid rgba(212, 165, 116, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 4px 12px rgba(212, 165, 116, 0.15),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
        }

        .ticker-item:hover .ticker-icon {
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.25) 0%, rgba(212, 165, 116, 0.15) 100%);
            border-color: var(--gold);
            transform: rotate(360deg) scale(1.1);
            box-shadow:
                0 6px 20px rgba(212, 165, 116, 0.3),
                inset 0 1px 2px rgba(255, 255, 255, 0.2);
        }

        .ticker-icon i {
            color: var(--gold);
            font-size: 1.1rem;
            filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
        }

        /* Enhanced Pulse Animation */
        .ticker-icon.pulse::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            border-radius: 50%;
            animation: pulse-ring-premium 2.5s ease-out infinite;
        }

        .ticker-icon.pulse::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(212, 165, 116, 0.5);
            border-radius: 50%;
            animation: pulse-ring-premium 2.5s ease-out infinite 0.5s;
        }

        @keyframes pulse-ring-premium {
            0% {
                transform: scale(0.9);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        .ticker-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3px;
        }

        .ticker-label {
            color: rgba(153, 153, 153, 0.8);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .ticker-item:hover .ticker-label {
            color: var(--gold);
            letter-spacing: 2.5px;
        }

        .ticker-value {
            color: var(--white);
            font-weight: 700;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 8px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .ticker-item:hover .ticker-value {
            color: var(--gold);
            transform: scale(1.05);
        }

        .ticker-value.open {
            color: #66bb6a;
            text-shadow: 0 0 15px rgba(102, 187, 106, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }

        .ticker-value.closed {
            color: #ef5350;
            text-shadow: 0 0 15px rgba(239, 83, 80, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }

        .ticker-value.warning {
            background: linear-gradient(135deg, #ffa726 0%, #ff7043 50%, #ff6f00 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
            font-weight: 700;
            animation: warningPulse 2s ease-in-out infinite;
            position: relative;
        }

        .ticker-value.warning::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #ffa726 0%, #ff7043 50%, #ff6f00 100%);
            opacity: 0.15;
            border-radius: 6px;
            z-index: -1;
            filter: blur(8px);
        }

        @keyframes warningPulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        #customerCount {
            display: inline-block;
            transition: all 0.3s ease;
        }

        #customerCount.count-change {
            animation: countChange 0.5s ease;
        }

        @keyframes countChange {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.3);
                color: var(--gold);
            }
            100% {
                transform: scale(1);
            }
        }

        #waitingIcon {
            transition: all 0.3s ease;
        }

        #waitingIcon i.fa-check-circle {
            color: #4caf50;
        }

        #waitingIcon i.fa-times-circle {
            color: #f44336;
        }

        #waitingIcon.pulse-once {
            animation: pulseOnce 0.6s ease;
        }

        @keyframes pulseOnce {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Premium Divider */
        .ticker-divider {
            width: 2px;
            height: 50px;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(212, 165, 116, 0.15) 15%,
                rgba(212, 165, 116, 0.4) 50%,
                rgba(212, 165, 116, 0.15) 85%,
                transparent 100%
            );
            position: relative;
            transition: all 0.3s ease;
        }

        .ticker-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(212, 165, 116, 0.6);
            animation: divider-glow 3s ease-in-out infinite;
        }

        @keyframes divider-glow {
            0%, 100% {
                opacity: 0.4;
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 8px rgba(212, 165, 116, 0.4);
            }
            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.3);
                box-shadow: 0 0 20px rgba(212, 165, 116, 0.8);
            }
        }

        /* Enhanced Live Dot */
        .ticker-live-dot {
            width: 10px;
            height: 10px;
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
            border-radius: 50%;
            display: inline-block;
            animation: live-pulse-premium 2s ease-in-out infinite;
            margin-left: 8px;
            box-shadow:
                0 0 16px rgba(74, 222, 128, 0.7),
                0 0 4px rgba(74, 222, 128, 0.9),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
            position: relative;
        }

        .ticker-live-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: 50%;
            animation: ripple-dot 2s ease-out infinite;
        }

        @keyframes live-pulse-premium {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                box-shadow:
                    0 0 16px rgba(74, 222, 128, 0.7),
                    0 0 4px rgba(74, 222, 128, 0.9);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.15);
                box-shadow:
                    0 0 24px rgba(74, 222, 128, 0.9),
                    0 0 8px rgba(74, 222, 128, 1);
            }
        }

        @keyframes ripple-dot {
            0% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(2);
            }
        }

        /* Ticker Background Animation */
        .ticker-bg-animation {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.03), transparent);
            animation: tickerSlide 15s linear infinite;
        }

        @keyframes tickerSlide {
            to {
                left: 100%;
            }
        }

        /* Main content spacing */
        main {
            margin-top: 150px;
        }

        /* ========== HERO SECTION ========== */
        #hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(212,165,116,0.1) 100%), url('/images/hairloft_header.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Animated background particles */
        #hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle, rgba(212,165,116,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: particleMove 20s linear infinite;
        }

        @keyframes particleMove {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(50px, 50px) rotate(360deg);
            }
        }

        #hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            animation: heroTitle 1s ease-out;
            line-height: 1.2;
            font-weight: 700;
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

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

        .hero-content .subtitle {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 30px;
            letter-spacing: 5px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out 0.3s both;
            font-weight: 300;
        }

        /* Creative button */
        .hero-cta {
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn-hero {
            display: inline-block;
            padding: 18px 50px;
            background: var(--gold);
            color: var(--primary-black);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--white);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-hero:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-hero span {
            position: relative;
            z-index: 1;
        }

        .btn-hero:hover {
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(212, 165, 116, 0.4);
        }

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

        /* ========== ABOUT SECTION ========== */
        #about {
            background: var(--secondary-black);
            position: relative;
            overflow: hidden;
        }

        .about-wrapper {
            position: relative;
            z-index: 1;
        }

        /* Stats Bar */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 60px;
            background: var(--dark-gray);
            border: 1px solid var(--border-color);
            margin-bottom: 80px;
            position: relative;
        }

        .about-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold) 0%, transparent 50%, var(--gold) 100%);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'Oswald', sans-serif;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .stat-label {
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }

        /* Main Content Grid */
        .about-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-content-left .section-title {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 20px;
        }

        .about-content-left h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            color: var(--white);
        }

        .about-text {
            margin-bottom: 40px;
        }

        .about-text .lead {
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 500;
        }

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

        /* Features Grid */
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(212, 165, 116, 0.05);
            border: 1px solid rgba(212, 165, 116, 0.1);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(212, 165, 116, 0.1);
            transform: translateX(5px);
        }

        .feature-item i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        .feature-item span {
            color: var(--white);
            font-weight: 500;
        }

        /* CTA Buttons */
        .about-cta {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .btn-link {
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-link:hover {
            gap: 15px;
        }

        /* Images Section */
        .about-images {
            position: relative;
            height: 600px;
        }

        .image-main {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 400px;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }

        .image-secondary {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60%;
            height: 300px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

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

        .about-images .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-images > div:hover .image-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%);
            padding: 25px 20px;
        }

        .about-images > div:hover img {
            transform: scale(1.08);
        }

        .image-overlay span {
            color: var(--gold);
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
            display: block;
            transform: translateY(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-images > div:hover .image-overlay span {
            transform: translateY(-4px);
        }

        /* Experience Badge */
        .experience-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(-50%, -50%) translateY(0);
            }
            50% {
                transform: translate(-50%, -50%) translateY(-10px);
            }
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-black);
            line-height: 1;
        }

        .badge-text {
            color: var(--primary-black);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* Quote Section */
        .about-quote {
            text-align: center;
            padding: 60px;
            background: var(--dark-gray);
            border-left: 4px solid var(--gold);
            border-right: 4px solid var(--gold);
            position: relative;
        }

        .about-quote i {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .about-quote p {
            font-size: 1.8rem;
            color: var(--white);
            font-style: italic;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .about-quote span {
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ========== SERVICES SECTION ========== */
        .services-wrapper {
            margin-top: 60px;
        }

        /* Premium Services */
        .services-premium {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-premium-card {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
            padding: 50px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
        }

        .service-premium-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .service-number {
            font-size: 5rem;
            font-weight: 700;
            color: rgba(212, 165, 116, 0.1);
            font-family: 'Oswald', sans-serif;
            position: absolute;
            top: 20px;
            right: 30px;
            line-height: 1;
        }

        .service-premium-card:hover .service-number {
            color: rgba(212, 165, 116, 0.2);
        }

        .service-content h3 {
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .service-content p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .service-price {
            font-size: 1.5rem;
            color: var(--gold);
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .service-hover-bg {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .service-premium-card:hover .service-hover-bg {
            left: 100%;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background: transparent;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(212, 165, 116, 0.03);
            transition: height 0.3s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .service-tag {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .service-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }

        .service-card h4 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .service-link {
            color: var(--gold);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .service-link:hover {
            gap: 15px;
            color: var(--gold-hover);
        }

        /* CTA Section */
        .services-cta {
            text-align: center;
            padding: 60px;
            background: linear-gradient(135deg, var(--dark-gray) 0%, transparent 100%);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .services-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: lineMove 3s linear infinite;
        }

        @keyframes lineMove {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .services-cta p {
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 30px;
        }

        /* ========== GALLERY SECTION ========== */
        .gallery-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .gallery-filter {
            padding: 12px 30px;
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
        }

        .gallery-filter::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .gallery-filter:hover::before,
        .gallery-filter.active::before {
            left: 0;
        }

        .gallery-filter:hover {
            color: var(--primary-black);
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        }

        .gallery-filter.active {
            color: var(--primary-black);
            border-color: var(--gold);
            transform: translateY(-1px);
            box-shadow: 0 2px 10px rgba(212, 165, 116, 0.2);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 5px;
            margin-top: 60px;
            padding: 0 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            background: var(--dark-gray);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: galleryItemFadeIn 0.4s ease forwards;
            will-change: transform;
            contain: layout style paint;
        }

        @keyframes galleryItemFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item:nth-child(1) { animation-delay: 0.05s; }
        .gallery-item:nth-child(2) { animation-delay: 0.1s; }
        .gallery-item:nth-child(3) { animation-delay: 0.15s; }
        .gallery-item:nth-child(4) { animation-delay: 0.2s; }
        .gallery-item:nth-child(5) { animation-delay: 0.25s; }
        .gallery-item:nth-child(6) { animation-delay: 0.3s; }
        .gallery-item:nth-child(7) { animation-delay: 0.35s; }
        .gallery-item:nth-child(8) { animation-delay: 0.4s; }
        .gallery-item:nth-child(9) { animation-delay: 0.45s; }
        .gallery-item:nth-child(10) { animation-delay: 0.5s; }
        .gallery-item:nth-child(11) { animation-delay: 0.55s; }
        .gallery-item:nth-child(12) { animation-delay: 0.6s; }
        .gallery-item:nth-child(13) { animation-delay: 0.65s; }
        .gallery-item:nth-child(14) { animation-delay: 0.7s; }
        .gallery-item:nth-child(15) { animation-delay: 0.75s; }
        .gallery-item:nth-child(16) { animation-delay: 0.8s; }
        .gallery-item:nth-child(17) { animation-delay: 0.85s; }
        .gallery-item:nth-child(18) { animation-delay: 0.9s; }
        .gallery-item:nth-child(19) { animation-delay: 0.95s; }
        .gallery-item:nth-child(20) { animation-delay: 1.0s; }

        .gallery-item.wide {
            grid-column: span 2;
        }

        .gallery-item.tall {
            grid-row: span 2;
            aspect-ratio: auto;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
            filter: brightness(0.9);
            will-change: transform;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.85) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover .gallery-overlay {
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.95) 100%);
        }

        .gallery-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        .gallery-item:hover img {
            transform: scale(1.15);
            filter: brightness(1.1) contrast(1.1);
        }

        .gallery-overlay h4 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
            transform: translateY(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-overlay p {
            color: var(--white);
            font-size: 0.9rem;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
            transform: translateY(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover .gallery-overlay h4,
        .gallery-item:hover .gallery-overlay p {
            transform: translateY(-4px);
        }

        .gallery-expand {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.7);
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            opacity: 0;
            transition: all 0.3s ease;
        }

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

        .gallery-expand:hover {
            background: var(--gold);
            color: var(--primary-black);
            transform: scale(1.1);
        }

        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            animation: lightboxZoom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes lightboxZoom {
            from {
                transform: scale(0.7) translateY(50px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            display: block;
            object-fit: contain;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            transition: opacity 0.2s ease-in-out;
            will-change: opacity;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            width: 40px;
            height: 40px;
            background: transparent;
            border: 2px solid var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--white);
            font-size: 1.5rem;
        }

        .lightbox-close:hover {
            background: var(--white);
            color: var(--primary-black);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(0,0,0,0.5);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--gold);
            font-size: 1.4rem;
            backdrop-filter: blur(10px);
            opacity: 0.8;
        }

        .lightbox-nav:hover {
            background: var(--gold);
            color: var(--primary-black);
            transform: translateY(-50%) scale(1.15);
            opacity: 1;
            box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
        }

        .lightbox-prev {
            left: -80px;
        }

        .lightbox-next {
            right: -80px;
        }

        .lightbox-caption {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            text-align: center;
            color: var(--white);
            font-size: 1.1rem;
            padding: 15px;
            background: rgba(0,0,0,0.7);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .lightbox-counter {
            position: absolute;
            top: -60px;
            left: 0;
            color: var(--gold);
            font-size: 1rem;
            letter-spacing: 2px;
            font-weight: 600;
            background: rgba(0,0,0,0.7);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .view-more-btn {
            text-align: center;
            margin-top: 60px;
        }

        .view-more-btn .btn {
            padding: 18px 50px;
            font-size: 1rem;
        }

        /* ========== TEAM SECTION ========== */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-member {
            text-align: center;
            position: relative;
        }

        .team-image {
            width: 200px;
            height: 200px;
            margin: 0 auto 30px;
            position: relative;
            overflow: hidden;
            border-radius: 50%;
            border: 3px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .team-member:hover .team-image {
            border-color: var(--gold);
            transform: scale(1.05);
        }

        .team-member:hover .team-image img {
            filter: grayscale(0%);
        }

        .team-member h4 {
            color: var(--gold);
            margin-bottom: 5px;
        }

        .team-member p {
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }

        /* ========== PRICING SECTION ========== */
        #pricing {
            background: var(--secondary-black);
            position: relative;
        }

        .pricing-wrapper {
            max-width: 1200px;
            margin: 60px auto 0;
        }

        /* Pricing Header */
        .pricing-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-badge {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            padding: 15px 40px;
            background: linear-gradient(135deg, transparent, rgba(212, 165, 116, 0.1), transparent);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .pricing-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .pricing-badge i {
            color: var(--gold);
            font-size: 0.8rem;
        }

        .pricing-badge span {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Pricing Content */
        .pricing-content {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            background: var(--dark-gray);
            border: 1px solid var(--border-color);
            position: relative;
        }

        /* Column Styles */
        .pricing-column {
            padding: 60px;
        }

        .column-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .column-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
        }

        .column-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            border-radius: 50%;
            animation: pulse-border 2s infinite;
        }

        @keyframes pulse-border {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .column-icon i {
            font-size: 2rem;
            color: var(--primary-black);
        }

        .pricing-column h3 {
            color: var(--white);
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .header-line {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 0 auto;
        }

        /* Price Items */
        .price-items {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .price-item {
            display: flex;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            transition: all 0.3s ease;
        }

        .price-item:hover {
            background: rgba(212, 165, 116, 0.03);
            padding-left: 10px;
        }

        .item-name {
            color: var(--white);
            flex-shrink: 0;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .item-dots {
            flex: 1;
            height: 1px;
            background-image: linear-gradient(to right, var(--text-gray) 0%, var(--text-gray) 50%, transparent 50%);
            background-size: 8px 1px;
            background-repeat: repeat-x;
            margin: 0 15px;
            opacity: 0.3;
        }

        .item-price {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.2rem;
            flex-shrink: 0;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
        }

        /* Featured Item */
        .price-item.featured {
            background: rgba(212, 165, 116, 0.05);
            border: 1px solid rgba(212, 165, 116, 0.2);
            margin: 10px -20px;
            padding: 25px 20px;
            position: relative;
        }

        .featured-tag {
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--gold);
            color: var(--primary-black);
            padding: 4px 15px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-item.featured .item-name {
            font-weight: 600;
        }

        .price-item.featured .item-price {
            font-size: 1.4rem;
        }

        /* Special Item */
        .price-item.special {
            border-bottom: none;
            padding-top: 30px;
        }

        .price-item.special .item-price {
            color: var(--text-gray);
            font-style: italic;
            font-size: 1rem;
        }

        /* Price Divider */
        .price-divider {
            height: 1px;
            background: var(--border-color);
            margin: 20px 0;
        }

        /* Center Divider */
        .pricing-divider {
            width: 1px;
            background: var(--border-color);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .divider-line {
            flex: 1;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        }

        .divider-icon {
            width: 50px;
            height: 50px;
            background: var(--dark-gray);
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }

        .divider-icon i {
            color: var(--gold);
            font-size: 1.2rem;
            transform: rotate(45deg);
        }

        /* Pricing Footer */
        .pricing-footer {
            text-align: center;
            padding: 60px;
            background: linear-gradient(135deg, var(--dark-gray) 0%, transparent 100%);
            border: 1px solid var(--border-color);
            border-top: none;
            margin-top: -1px;
        }

        .pricing-footer p {
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 30px;
        }

        .footer-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .btn-outline {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-outline:hover {
            color: var(--gold);
            border-color: var(--gold);
        }

        /* ========== CONTACT SECTION ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

        .contact-info h3 {
            color: var(--gold);
            margin-bottom: 30px;
        }

        .contact-item {
            margin-bottom: 30px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-item i {
            color: var(--gold);
            font-size: 1.5rem;
            margin-top: 5px;
        }

        .contact-item h4 {
            color: var(--white);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .contact-item p,
        .contact-item a {
            color: var(--text-gray);
        }

        .contact-form {
            background: var(--dark-gray);
            padding: 40px;
            border: 1px solid var(--border-color);
        }

        .form-warning {
            background: rgba(212, 165, 116, 0.1);
            border: 2px solid var(--gold);
            padding: 15px;
            margin-bottom: 30px;
            text-align: center;
            border-radius: 5px;
        }

        .form-warning p {
            color: var(--gold);
            margin: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .form-control {
            width: 100%;
            padding: 15px 20px;
            background: var(--secondary-black);
            border: 1px solid var(--border-color);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1);
        }

        .form-control::placeholder {
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

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

        /* Form Messages */
        .form-messages {
            padding: 15px 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            font-size: 0.95rem;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-messages.success {
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid #4caf50;
            color: #4caf50;
        }

        .form-messages.error {
            background: rgba(244, 67, 54, 0.1);
            border: 1px solid #f44336;
            color: #f44336;
        }

        .form-messages i {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        #submitBtn {
            position: relative;
            min-width: 200px;
        }

        #submitBtn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .btn-loading {
            display: none;
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--primary-black);
            position: relative;
            margin-top: 100px;
        }

        .footer-top {
            padding: 80px 0 60px;
            border-top: 1px solid var(--border-color);
            position: relative;
        }

        .footer-top::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
        }

        .footer-column h4,
        .footer-column h5 {
            color: var(--white);
            margin-bottom: 30px;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .footer-column h5 {
            font-size: 1.1rem;
        }

        .footer-column h5::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }

        .footer-logo h4 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .logo-line {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin-bottom: 30px;
        }

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

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

        .footer-column ul li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }

        .footer-column ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background: var(--gold);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-column ul li:hover::before {
            opacity: 1;
        }

        .footer-column ul li a {
            color: var(--text-gray);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        /* Contact Info Items */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-info-item i {
            color: var(--gold);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .contact-info-item a {
            color: var(--text-gray);
            transition: all 0.3s ease;
        }

        .contact-info-item a:hover {
            color: var(--gold);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .social-links a:hover::before {
            transform: translateY(0);
        }

        .social-links a:hover {
            color: var(--primary-black);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        /* Footer Bottom */
        .footer-bottom {
            background: var(--secondary-black);
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--text-gray);
            margin: 0;
        }

        .heart {
            color: var(--gold);
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--primary-black);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            border: 2px solid var(--gold);
        }

        .back-to-top:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-5px);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

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

        /* ========== IMPRESSUM MODAL ========== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--secondary-black);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            padding: 40px 40px 30px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
        }

        .modal-header h2 {
            color: var(--gold);
            font-size: 2.5rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: transparent;
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--white);
            font-size: 1.5rem;
        }

        .modal-close:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--primary-black);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 40px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .modal-body h3 {
            color: var(--gold);
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .modal-body h3:first-child {
            margin-top: 0;
        }

        .modal-body p,
        .modal-body address {
            margin-bottom: 15px;
            font-style: normal;
        }

        .modal-body strong {
            color: var(--white);
            font-weight: 600;
        }

        .modal-body a {
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .modal-body a:hover {
            color: var(--gold-hover);
            text-decoration: underline;
        }

        .impressum-link {
            cursor: pointer;
            color: var(--text-gray);
            transition: all 0.3s ease;
        }

        .impressum-link:hover {
            color: var(--gold);
        }

        /* Scrollbar Styling für Modal */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: var(--dark-gray);
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 4px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: var(--gold-hover);
        }

        @media (max-width: 768px) {
            .modal-content {
                max-height: 100vh;
                border-radius: 0;
            }

            .modal-header {
                padding: 30px 20px 20px;
            }

            .modal-header h2 {
                font-size: 1.8rem;
            }

            .modal-body {
                padding: 20px;
            }

            .modal-close {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
        }

        /* ========== RESPONSIVE DESIGN ========== */
        /* Tablet Styles */
        @media (max-width: 1024px) {
            /* Navigation */
            .nav-menu {
                gap: 20px;
                padding-left: 30px;
            }

            /* About */
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                padding: 40px;
            }

            .about-main {
                gap: 60px;
            }

            /* Services */
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Gallery */
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 4px;
                padding: 0 15px;
            }

            /* Pricing */
            .pricing-column {
                padding: 50px 40px;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Typography */
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }

            /* General Mobile Adjustments */
            .section {
                padding: 60px 0;
            }

            .container {
                padding: 0 15px;
            }

            /* Main Content Spacing for Mobile */
            main {
                margin-top: 135px;
            }

            /* Navigation Mobile */
            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translateY(8px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translateY(-8px);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 75px;
                flex-direction: column;
                background: var(--secondary-black);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 30px 0;
                border-top: 1px solid var(--border-color);
                gap: 20px;
                padding-left: 0;
                max-height: calc(100vh - 135px);
                overflow-y: auto;
                box-shadow: 0 10px 30px rgba(0,0,0,0.8);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 1.1rem;
                padding: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            /* Live Ticker Mobile */
            .live-ticker {
                top: 75px;
            }

            header.scrolled ~ .live-ticker {
                top: 68px;
            }

            .ticker-content {
                padding: 15px 20px;
                gap: 30px;
            }

            .ticker-item {
                font-size: 0.9rem;
                gap: 12px;
            }

            .ticker-icon {
                width: 35px;
                height: 35px;
            }

            .ticker-icon i {
                font-size: 0.9rem;
            }

            .ticker-label {
                font-size: 0.75rem;
                letter-spacing: 1px;
            }

            .ticker-value {
                font-size: 1.1rem;
            }

            .ticker-divider {
                height: 28px;
            }

            /* Hero Mobile */
            #hero {
                height: 100vh;
                min-height: 600px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero-content .subtitle {
                font-size: 1rem;
                letter-spacing: 3px;
            }

            .btn-hero {
                padding: 15px 35px;
                font-size: 0.9rem;
                letter-spacing: 2px;
            }

            /* About Section Mobile */
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 20px;
                gap: 20px;
                margin-bottom: 50px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .about-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content-left {
                order: 2;
                text-align: center;
            }

            .about-content-right {
                order: 1;
            }

            .about-content-left h2 {
                font-size: 2rem;
            }

            .about-images {
                height: 350px;
                margin-bottom: 30px;
            }

            .image-main {
                width: 85%;
                height: 220px;
                right: -10px;
            }

            .image-secondary {
                width: 75%;
                height: 180px;
                left: -10px;
                bottom: 20px;
            }

            .experience-badge {
                width: 100px;
                height: 100px;
            }

            .badge-number {
                font-size: 1.8rem;
            }

            .badge-text {
                font-size: 0.8rem;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .about-cta {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .about-cta .btn,
            .about-cta .btn-link {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .about-quote {
                padding: 40px 20px;
            }

            .about-quote p {
                font-size: 1.3rem;
            }

            /* Services Mobile */
            .services-wrapper {
                margin-top: 40px;
            }

            .services-premium {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }

            .service-premium-card {
                padding: 35px 25px;
            }

            .service-number {
                font-size: 3rem;
                top: 15px;
                right: 20px;
            }

            .service-content h3 {
                font-size: 1.6rem;
            }

            .service-price {
                font-size: 1.3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }

            .service-card {
                padding: 30px 20px;
            }

            .services-cta {
                padding: 40px 20px;
            }

            .services-cta p {
                font-size: 1.1rem;
            }

            /* Gallery Mobile */
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 3px;
                padding: 0 10px;
            }



            .gallery-overlay {
                padding: 12px;
            }

            .gallery-overlay h4 {
                font-size: 0.9rem;
            }

            .gallery-overlay p {
                font-size: 0.75rem;
            }

            .gallery-expand {
                width: 35px;
                height: 35px;
                top: 10px;
                right: 10px;
            }

            /* Team Mobile */
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .team-image {
                width: 150px;
                height: 150px;
                margin-bottom: 20px;
            }

            .team-member h4 {
                font-size: 1.3rem;
            }

            /* Pricing Mobile */
            .pricing-header {
                margin-bottom: 40px;
            }

            .pricing-badge {
                padding: 12px 25px;
                font-size: 0.8rem;
            }

            .pricing-content {
                grid-template-columns: 1fr;
            }

            .pricing-column {
                padding: 40px 25px;
            }

            .pricing-column:first-child {
                border-bottom: 2px solid var(--border-color);
            }

            .pricing-divider {
                display: none;
            }

            .column-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .column-icon i {
                font-size: 1.5rem;
            }

            .pricing-column h3 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .header-line {
                width: 80px;
            }

            .price-item {
                padding: 15px 0;
                font-size: 0.95rem;
            }

            .price-item.featured {
                margin: 10px -10px;
                padding: 20px 15px;
            }

            .featured-tag {
                font-size: 0.7rem;
                padding: 3px 12px;
            }

            .item-price {
                font-size: 1.1rem;
            }

            .price-item.featured .item-price {
                font-size: 1.2rem;
            }

            .pricing-footer {
                padding: 40px 20px;
            }

            .pricing-footer p {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }

            .footer-buttons {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }

            .footer-buttons a {
                width: 100%;
                text-align: center;
                padding: 15px 30px;
            }

            /* Contact Mobile */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-info {
                text-align: center;
            }

            .contact-item {
                justify-content: center;
                text-align: left;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            /* Footer Mobile */
            footer {
                margin-top: 60px;
            }

            .footer-top {
                padding: 50px 0 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-column h5::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-column ul li {
                padding-left: 0;
                margin-bottom: 12px;
            }

            .footer-column ul li::before {
                display: none;
            }

            .footer-column ul li a {
                font-size: 0.95rem;
            }

            .social-links {
                justify-content: center;
                margin-top: 25px;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .footer-bottom p {
                font-size: 0.9rem;
            }

            .contact-info-item {
                justify-content: center;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }

        /* Very Small Devices */
        @media (max-width: 480px) {
            /* Typography */
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.3rem; }

            /* Main spacing for very small devices */
            main {
                margin-top: 125px;
            }

            /* Ticker mobile optimization */
            .ticker-content {
                gap: 15px;
                padding: 12px 10px;
            }

            .ticker-item {
                gap: 8px;
                font-size: 0.85rem;
            }

            .ticker-icon {
                width: 28px;
                height: 28px;
            }

            .ticker-icon i {
                font-size: 0.75rem;
            }

            .ticker-label {
                display: none;
            }

            .ticker-value {
                font-size: 0.95rem;
            }

            .ticker-divider {
                height: 20px;
            }

            #waitingTime {
                font-size: 0.9rem;
                letter-spacing: 0.5px;
            }

            /* Hide tooltip on mobile */
            #waitingTime[data-tooltip]:hover::after,
            #waitingTime[data-tooltip]:hover::before {
                display: none;
            }
            
            /* Hero */
            .hero-content h1 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .hero-content .subtitle {
                font-size: 0.9rem;
                letter-spacing: 2px;
            }

            .btn-hero {
                padding: 12px 25px;
                font-size: 0.85rem;
            }
            
            /* About Stats */
            .about-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .stat-item {
                padding: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .stat-item:last-child {
                border-bottom: none;
            }
            
            /* Gallery */
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 2px;
                padding: 0 5px;
            }



            /* Lightbox Mobile */
            .lightbox-nav {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                top: 20px;
                right: 20px;
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }

            .lightbox-counter {
                top: 20px;
                left: 20px;
                font-size: 0.9rem;
                padding: 6px 12px;
            }

            .lightbox-caption {
                bottom: 20px;
                left: 20px;
                right: 20px;
                font-size: 1rem;
                padding: 12px;
            }

            /* Team */
            .team-grid {
                grid-template-columns: 1fr;
            }

            /* Pricing */
            .pricing-column {
                padding: 30px 20px;
            }

            .column-icon {
                width: 50px;
                height: 50px;
            }

            .column-icon i {
                font-size: 1.3rem;
            }

            .pricing-column h3 {
                font-size: 1.8rem;
            }
            
            .price-item {
                font-size: 0.9rem;
                padding: 12px 0;
            }
            
            .item-price {
                font-size: 1rem;
            }

            .item-name {
                max-width: 200px;
            }

            /* Footer */
            .footer-logo h4 {
                font-size: 1.6rem;
            }

            .footer-column h5 {
                font-size: 1rem;
            }

            /* Buttons */
            .btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        /* Touch-friendly adjustments */
        @media (hover: none) {
            .btn:active {
                transform: scale(0.98);
            }

            .gallery-overlay {
                opacity: 1;
                background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.9) 100%);
            }

            .team-image img {
                filter: grayscale(0%);
            }
        }
        /* === Mobile- & Fallback-Fix: Ticker immer RELATIV ================= */
@media (max-width:768px){
  .live-ticker,
  header.scrolled ~ .live-ticker{
      position:relative !important;
      top:auto !important;      /* -- alle alten top-Offsets killen -- */
  }
}
/* ===== MOBILE-LIVE-TICKER ========================================= */
/* ---------- ≤ 768 px (Tablets & große Phones) ---------- */
@media (max-width: 768px){

  /* Der Ticker soll mobil NICHT mehr »fixed« sein */
  .live-ticker{
    position:  relative !important;   /* überschreibt alte fixed-Regel */
    top:        0       !important;   /* JS kümmert sich nicht darum   */
    width:      100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  /* Layout & Abstände */
  .ticker-content{
    padding: 12px 16px;
    gap:     24px;
    flex-wrap: wrap;                  /* darf umbrechen                */
    justify-content: center;
  }

  .ticker-item{
    gap: 10px;
    font-size: .9rem;
  }

  .ticker-icon{
    width: 34px;
    height:34px;
  }

  .ticker-divider{ display:none; }    /* Divider spart Platz           */
}

/* ---------- ≤ 480 px (kleine Phones) ---------- */
@media (max-width: 480px){

  .ticker-content{
    padding: 10px 8px;
    gap:     14px;
  }

  .ticker-item{
    flex: 1 1 42%;                    /* 2–3 Items pro Zeile           */
    justify-content: flex-start;
    font-size: .85rem;
  }

  .ticker-label{ display:none; }      /* nur Icons + Werte anzeigen    */
  .ticker-value{ font-size: .85rem; }

  .ticker-icon{
    width: 28px;
    height:28px;
  }
}

/* ================================================================= */

/* Reduced Motion Support - Better performance for slow connections */
@media (prefers-reduced-motion: reduce) {
    /* Disable animations for better performance */
    .gallery-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .gallery-item img {
        transition: none !important;
    }

    .gallery-overlay {
        transition: none !important;
    }

    .lightbox-content {
        animation: none !important;
    }

    @keyframes lightboxZoom {
        from, to {
            transform: none;
            opacity: 1;
        }
    }

    @keyframes galleryItemFadeIn {
        from, to {
            opacity: 1;
            transform: none;
        }
    }

    /* Instant transitions instead of animations */
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch Device Optimizations - Overlays always visible on mobile */
@media (hover: none) and (pointer: coarse) {
    /* Gallery Overlay - always fully visible on touch devices */
    .gallery-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.92) 100%);
        opacity: 1;
    }

    .gallery-item:active .gallery-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.98) 100%);
    }

    .gallery-overlay h4,
    .gallery-overlay p {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    }

    /* About Images Overlay - always visible on touch devices */
    .about-images .image-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
        opacity: 1;
    }

    .about-images > div:active .image-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
    }

    /* Remove hover transform on touch - use active instead */
    .gallery-item:active {
        transform: scale(0.98);
    }

    .about-images > div:active img {
        transform: scale(1.05);
    }
}

/* ================================================================= */

