/* ========================================
           CSS RESET & BASE STYLES
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
            outline: 2px solid #D4AF37;
            outline-offset: 3px;
            border-radius: 2px;
        }

        :root {
            --bg-primary: #050505;
            --bg-secondary: #0D0D0D;
            --bg-tertiary: #1A1A1A;
            --gold-primary: #D4AF37;
            --gold-secondary: #B8860B;
            --gold-light: #F4E4BA;
            --teal: #00B4D8;
            --text-primary: #F5F5F5;
            --text-secondary: #B0B0B0;
            --text-muted: #888888;
        }

html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-primary); }
        ::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(212, 175, 55, 0.5); }

        /* Skip to content (accessibility) */
        .skip-to-content {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--gold-primary);
            color: var(--bg-primary);
            padding: 12px 24px;
            z-index: 99999;
            font-weight: 600;
            text-decoration: none;
            transition: top 0.3s;
        }
        .skip-to-content:focus {
            top: 0;
        }

        /* Cookie Banner */
.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-tertiary);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding: 0.6rem 1.5rem;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            z-index: 9000;
            backdrop-filter: blur(20px);
        }
        .cookie-banner.show { display: flex; }
.cookie-text {
            font-size: 0.78rem;
            color: var(--text-secondary);
            flex: 1;
            line-height: 1.4;
        }
        .cookie-text a { color: var(--gold-primary); }
        .cookie-btns {
            display: flex;
            gap: 0.75rem;
            flex-shrink: 0;
        }
        .cookie-btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-family: 'Inter', sans-serif;
        }
        .cookie-btn-accept {
            background: var(--gold-primary);
            color: var(--bg-primary);
        }
        .cookie-btn-accept:hover { background: var(--gold-light); }
        .cookie-btn-decline {
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.4);
            color: var(--text-primary);
        }
        .cookie-btn-decline:hover { border-color: var(--gold-primary); color: var(--gold-primary); background: rgba(212, 175, 55, 0.05); }
.cookie-close {
            position: absolute;
            top: 0.3rem;
            left: 0.5rem;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 10px;
            min-width: 44px;
            min-height: 44px;
            line-height: 1;
        }
        .cookie-close:hover { color: var(--text-primary); }
        @media (max-width: 600px) {
            .cookie-banner { flex-direction: column; text-align: center; }
            .cookie-btns { justify-content: center; }
        }

body {
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            letter-spacing: -0.01em;
        }

        /* ========================================
           HEADER WRAPPER (topbar + nav, fixed together)
        ======================================== */
        .header-fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        /* ========================================
           TOP CONTACT BAR
        ======================================== */
        .topbar {
            background: var(--bg-primary);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            row-gap: 0.2rem;
            gap: 0.6rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
            padding: 0.4rem 1rem;
        }
        .topbar a { color: var(--gold-primary); text-decoration: none; font-weight: 600; }
        .topbar a:hover { color: var(--gold-light); }
        .topbar i { color: var(--gold-primary); margin-right: 0.3rem; }
        .topbar-sep { color: var(--text-muted); }
        @media (max-width: 480px) {
            .topbar { font-size: 0.68rem; gap: 0.4rem; padding: 0.35rem 0.75rem; }
            .topbar-address { flex-basis: 100%; text-align: center; }
        }

        /* ========================================
           NAVIGATION
        ======================================== */
        .nav {
            position: relative;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav.scrolled {
            background: rgba(5, 5, 5, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1rem 4rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

/* Anchor sections: clear sticky nav on scroll-to */
        [id] {
            scroll-margin-top: 110px;
        }

.nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--gold-primary);
            margin-right: 2.5rem;
            flex-shrink: 0;
        }

        .nav-logo-icon {
            width: 45px;
            height: 45px;
        }

.nav-logo-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

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

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold-primary);
        }

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

        .nav-cta {
            background: transparent;
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            padding: 0.75rem 1.75rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: var(--gold-primary);
            color: var(--bg-primary);
        }

        /* Mobile Menu Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--gold-primary);
            transition: all 0.3s ease;
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--bg-primary);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4) saturate(1.2);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.7) 0%,
                rgba(5, 5, 5, 0.5) 40%,
                rgba(5, 5, 5, 0.6) 70%,
                rgba(5, 5, 5, 0.95) 100%
            );
            z-index: 1;
        }





        /* ========================================
           HERO CONTENT
        ======================================== */
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1000px;
            padding: 0 2rem;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(5, 5, 5, 0.45);
            border: 1px solid rgba(212, 175, 55, 0.35);
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold-primary);
            box-shadow: none;
            font-family: 'Plus Jakarta Sans', sans-serif;
            opacity: 1; transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.3s;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        /* Hero Trust-Checkmarks (3 inline items mit Checkmark-Icon, zwischen Subtitle und CTAs) */
        .hero-trust-checkmarks {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.75rem;
            flex-wrap: wrap;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .hero-trust-item {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .hero-trust-item svg {
            width: 14px;
            height: 14px;
            stroke: var(--gold-primary);
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .hero-trust-checkmarks { gap: 1rem; font-size: 0.8rem; }
        }

.hero-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        .hero-title-line {
            display: block;
            overflow: hidden;
        }

        .hero-title-word {
            display: inline-block;
            opacity: 1; transform: translateY(100%);
            animation: revealWord 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-title-line:nth-child(1) .hero-title-word {
            animation-delay: 0.5s;
        }

        .hero-title-line:nth-child(2) .hero-title-word {
            animation-delay: 0.7s;
        }

        .hero-title-line:nth-child(3) .hero-title-word {
            animation-delay: 0.9s;
        }

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

        .hero-title-gold {
            color: var(--gold-primary);
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 3rem;
            font-weight: 300;
            line-height: 1.8;
            opacity: 1; transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards 1.1s;
        }

.hero-ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 1; transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards 1.3s;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.15rem 2.75rem;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
            color: var(--bg-primary);
            border: none;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
            opacity: 1; transition: opacity 0.4s ease;
        }

.btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
        }

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

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

        /* Button ripple effect */
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
            opacity: 0;
        }
        .btn:active::after {
            width: 300px;
            height: 300px;
            opacity: 1;
            transition: 0s;
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(245, 245, 245, 0.3);
        }

        .btn-ghost:hover {
            background: rgba(245, 245, 245, 0.05);
            border-color: var(--text-primary);
            transform: translateY(-3px);
        }

.btn svg {
            width: 18px;
            height: 18px;
            position: relative;
            z-index: 1;
        }
        .btn-arrow svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

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

        /* ========================================
           SCROLL INDICATOR
        ======================================== */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            opacity: 1; animation: fadeInUp 0.8s ease forwards 1.8s;
        }

        .scroll-indicator span {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
            color: var(--gold-primary);
            animation: bounce 2s infinite ease-in-out;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(10px);
            }
            60% {
                transform: translateY(5px);
            }
        }

        /* ========================================
           GOLD GLOW PULSE
        ======================================== */
        .glow-pulse {
            animation: glowPulse 3s infinite ease-in-out;
        }

        @keyframes glowPulse {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
            }
        }

        /* ========================================
           SERVICES PREVIEW SECTION
        ======================================== */
.services-preview {
            padding: 4rem 4rem 8rem;
            background: #0A0A0A;
            position: relative;
        }

        .services-preview::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

.section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            padding-top: 2rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 10rem 4rem;
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
            position: relative;
            text-align: center;
        }
        .cta-content {
            position: relative;
            z-index: 2;
        }
        .cta-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 3rem;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }
        .cta-btn-large {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.4rem 3.5rem;
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
            color: var(--bg-primary);
            border: none;
            border-radius: 50px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .cta-btn-large:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
        }
        .cta-btn-large .btn-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            transition: transform 0.3s ease;
        }
        .cta-btn-large:hover .btn-arrow {
            transform: translateX(5px);
        }
        .cta-btn-large .btn-arrow svg {
            width: 22px;
            height: 22px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: 1rem;
        }

.section-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

.section-desc {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.15);
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 1; transform: translateY(40px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            opacity: 1; transition: opacity 0.4s ease;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

.service-card:hover {
            transform: translateY(-15px);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.3),
                0 0 40px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.5);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            transform: translateX(100%);
        }

.service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            color: var(--gold-primary);
            font-size: 1.8rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        .service-icon i {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .service-card:hover .service-icon {
            background: rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.4);
            transform: rotate(15deg) scale(1.1);
        }

.service-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

.service-card p {
            color: var(--text-secondary);
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

.service-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--gold-primary);
            font-weight: 500;
            position: relative;
            z-index: 1;
            overflow: hidden;
            line-height: 1.4;
        }

        .service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

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

        /* Trust Bar Stats */
        .trust-bar-stats {
            padding: 6rem 4rem;
            background: var(--bg-primary);
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .trust-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .trust-stats-grid::before,
        .trust-stats-grid::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
        }

        .trust-stats-grid::before { left: 33.33%; }
        .trust-stats-grid::after { right: 33.33%; }

        .trust-stat-item {
            text-align: center;
            padding: 0 2rem;
        }

        .trust-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: clamp(4rem, 8vw, 6rem);
            font-weight: 700;
            color: var(--gold-primary);
            line-height: 1;
            display: inline;
        }

        .trust-stat-plus,
        .trust-stat-percent {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 700;
            color: var(--gold-primary);
            opacity: 0.7;
        }

        .trust-stat-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-top: 1rem;
        }

        .trust-stat-divider {
            width: 50px;
            height: 1px;
            background: var(--gold-primary);
            opacity: 0.3;
            margin: 1.5rem auto 0;
        }

/* Testimonial Carousel */
        .testimonial-carousel-section {
            padding: 6rem 0 5rem;
        }

.carousel-wrapper {
            position: relative;
            overflow: visible;
            width: 100%;
        }

.carousel-track {
            display: flex;
            gap: 2rem;
            animation: carouselSlide 40s linear infinite;
        }

        /* Mobile: testimonials in 2-column grid */
        @media (max-width: 768px) {
            .testimonial-carousel-section {
                padding: 4rem 0 7rem;
            }
            .carousel-wrapper {
                display: block;
                padding: 0 1rem;
            }
            .carousel-track {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                animation: none !important;
                gap: 1rem;
            }
            .carousel-card {
                width: 100% !important;
                max-width: 100% !important;
                flex-shrink: 0;
            }
        }
                flex-wrap: nowrap;
            }
            .carousel-card {
                scroll-snap-align: start;
                flex-shrink: 0;
            }
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

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

.carousel-card {
            flex-shrink: 0;
            width: 400px;
            background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-left: 4px solid var(--gold-primary);
            border-radius: 1.5rem;
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .carousel-card:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
        }

        .carousel-quote-mark {
            position: absolute;
            top: 0.5rem;
            right: 1.5rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 5rem;
            color: var(--gold-primary);
            opacity: 0.1;
            line-height: 1;
            font-weight: 900;
        }

        .carousel-stars {
            color: var(--gold-primary);
            font-size: 1.1rem;
            letter-spacing: 0.4rem;
            margin-bottom: 1.25rem;
        }

        .carousel-text {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 1.75rem;
            position: relative;
            z-index: 1;
            word-wrap: break-word;
        }

        .carousel-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .carousel-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold-primary);
        }

        .carousel-info {
            flex: 1;
        }

.carousel-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text-primary);
            display: block;
        }

        .carousel-location {
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: 0.3rem;
            display: block;
        }

        .carousel-date {
            font-family: 'Outfit', sans-serif;
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
            display: block;
        }

        /* Carousel fade edges */
        .carousel-wrapper::before,
        .carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 10;
            pointer-events: none;
        }

        .carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-secondary), transparent);
        }

        .carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-secondary), transparent);
        }


        /* ========================================
           FAQ SECTION
        ======================================== */
        .faq-section {
            padding: 8rem 4rem;
            background: var(--bg-secondary);
            position: relative;
        }
        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            opacity: 0.3;
        }
.faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .faq-item {
            background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(20, 20, 20, 0.8));
            border: 1px solid rgba(212, 175, 55, 0.12);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }
        .faq-item:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.08);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.75rem 2rem;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            gap: 1rem;
            transition: all 0.3s ease;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-family: 'Plus Jakarta Sans', sans-serif;
            letter-spacing: 0;
        }
        .faq-question:hover {
            color: var(--gold-primary);
        }
        .faq-icon {
            width: 28px;
            height: 28px;
            border: 1.5px solid var(--gold-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--gold-primary);
            font-size: 1.2rem;
            line-height: 1;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
        }
        .faq-item.open .faq-icon {
            background: var(--gold-primary);
            color: var(--bg-primary);
            transform: rotate(45deg);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 2rem;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 2rem 1.75rem;
        }
        .faq-answer p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.75;
        }
        @media (max-width: 768px) {
            .faq-section { padding: 5rem 1.5rem; }
            .faq-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           REFERRAL / LOYALTY SECTION
        ======================================== */
        .referral-section {
            padding: 5rem 4rem;
            background: var(--bg-secondary);
            text-align: center;
        }
        .referral-card {
            max-width: 700px;
            margin: 0 auto;
            padding: 3rem;
            background: rgba(26,26,26,0.4);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 16px;
        }
        .referral-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
        }
        .referral-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        .referral-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
.referral-code {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 12px 24px;
            background: rgba(212,175,55,0.1);
            border: 1px dashed var(--gold-primary);
            border-radius: 8px;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold-primary);
            letter-spacing: 0.2em;
            margin-bottom: 1.5rem;
        }
        .referral-code:hover {
            background: rgba(212,175,55,0.15);
        }
        .referral-code-input {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background: rgba(212,175,55,0.1);
            border: 1px dashed var(--gold-primary);
            border-radius: 8px;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold-primary);
            letter-spacing: 0.2em;
            margin-bottom: 1.5rem;
            cursor: pointer;
            text-align: center;
            min-width: 180px;
        }
        .referral-code-input:hover {
            background: rgba(212,175,55,0.15);
            border-style: solid;
        }
        .referral-code-input:focus {
            outline: none;
            border-style: solid;
            border-color: var(--gold-primary);
        }
        .referral-code-input.copied {
            border-color: #22c55e;
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
        }
        .referral-terms {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .referral-section { padding: 4rem 1.5rem; }
            .referral-card { padding: 2rem 1.5rem; }
            .referral-code { font-size: 1.2rem; }
        }

        /* ========================================
           HOW IT WORKS SECTION
        ======================================== */
        .how-it-works-section {
            padding: 8rem 4rem;
            background: var(--bg-secondary);
            position: relative;
        }
        .how-it-works-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            opacity: 0.3;
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }
        .steps-grid::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 15%;
            right: 15%;
            height: 1px;
            background: linear-gradient(90deg, var(--gold-primary), var(--teal), var(--gold-primary));
            opacity: 0.3;
            z-index: 0;
        }
        @media (max-width: 768px) {
            .steps-grid::before { display: none; }
        }
        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .step-number {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--bg-tertiary);
            border: 2px solid var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-primary);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
            transition: all 0.3s;
        }
        .step-card:hover .step-number {
            background: var(--gold-primary);
            color: var(--bg-primary);
            transform: scale(1.1);
        }
        .step-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }
        .step-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .how-it-works-section { padding: 5rem 1.5rem; }
            .steps-grid { grid-template-columns: 1fr; gap: 3rem; }
            .step-number { width: 70px; height: 70px; font-size: 1.5rem; }
        }

        /* ========================================
           INSURANCE BADGE ON ABOUT IMAGE
        ======================================== */
.insurance-badge {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(5,5,5,0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212,175,55,0.3);
            border-radius: 10px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 5;
        }
        @media (max-width: 768px) {
            .insurance-badge {
                display: none !important;
            }
        }
        .insurance-badge svg {
            width: 28px;
            height: 28px;
        }
        .insurance-badge-label {
            font-size: 0.75rem;
            color: var(--gold-primary);
            font-weight: 700;
        }
        .insurance-badge-sub {
            font-size: 0.65rem;
            color: var(--text-secondary);
        }

        /* ========================================
           SERVICE AREA SECTION
        ======================================== */
        .service-area-section {
            padding: 8rem 4rem;
            background: var(--bg-primary);
        }
        .service-area-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service-area-districts {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
.district-badge {
            padding: 8px 18px;
            background: rgba(212, 175, 55, 0.06);
            border: 1px solid rgba(212, 175, 55, 0.18);
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            color: var(--text-secondary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .district-badge:hover {
            background: rgba(212, 175, 55, 0.15);
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
        }
        .district-badge.highlight {
            background: rgba(212, 175, 55, 0.12);
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            font-weight: 600;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
        }
.area-map-placeholder {
            width: 100%;
            height: 350px;
            background: var(--bg-secondary);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .area-map-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
        }
        .area-map-icon {
            width: 80px;
            height: 80px;
            opacity: 0.6;
            filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
        }
        .area-map-label {
            color: var(--text-muted);
            font-size: 0.85rem;
            z-index: 1;
            font-family: 'Outfit', sans-serif;
        }
        @media (max-width: 768px) {
            .service-area-section { padding: 5rem 1.5rem; }
            .service-area-grid { grid-template-columns: 1fr; gap: 3rem; }
            .area-map-placeholder { height: 250px; }
        }

        /* Google Badge */
        .google-badge-section {
            padding: 3rem 0 5rem;
            text-align: center;
        }

.google-badge {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 4rem;
            padding: 1.5rem 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 175, 55, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .google-badge:hover {
            box-shadow: 0 6px 35px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .google-badge::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
            animation: badgeShimmer 3s ease-in-out infinite;
        }

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

        .google-badge-icon {
            width: 48px;
            height: 48px;
            background: #4285F4;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: 700;
            box-shadow: 0 2px 10px rgba(66, 133, 244, 0.3);
            flex-shrink: 0;
        }

        .google-badge-content {
            text-align: left;
        }

        .google-badge-rating {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .google-badge-stars {
            color: var(--gold-primary);
            font-size: 1.25rem;
            letter-spacing: 0.1rem;
        }

        .google-badge-reviews {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: 0.3rem;
        }

        .google-badge-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-left: 2rem;
            padding-left: 2rem;
            border-left: 1px solid rgba(212, 175, 55, 0.2);
        }

        /* Gold text utility */
        .gold-text {
            color: var(--gold-primary);
        }

        /* ========================================
           PRICING SECTION
        ======================================== */
        .pricing-section {
            padding: 8rem 4rem;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 60% 40% at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0, 180, 216, 0.04) 0%, transparent 50%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

.pricing-card {
            background: linear-gradient(145deg, rgba(35, 35, 35, 0.9), rgba(20, 20, 20, 0.95));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 1.5rem;
            padding: 3rem 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            opacity: 1; transition: opacity 0.4s ease;
            border-radius: 0 0 4px 4px;
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.15);
        }

        .pricing-card:hover::before {
            opacity: 1;
            width: 70%;
        }

        /* Badge */
        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
            color: var(--bg-primary);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .pricing-popular {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
            animation: pulseBadge 2s infinite;
        }

        @keyframes pulseBadge {
            0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
            50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.7); }
        }

.pricing-tier {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .pricing-price-wrapper {
            margin-bottom: 2rem;
        }

        .pricing-currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold-primary);
            vertical-align: top;
            margin-right: 0.25rem;
        }

.pricing-price {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--gold-primary);
            line-height: 1;
            display: inline-block;
            letter-spacing: -0.03em;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        .pricing-period {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
            letter-spacing: 0.1em;
        }

        .pricing-divider {
            width: 50px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            margin: 1.5rem auto;
            opacity: 0.4;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            flex: 1;
            margin-bottom: 2.5rem;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.6rem 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-check {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--gold-primary);
        }

        .pricing-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            width: 100%;
            background: transparent;
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
        }

        .pricing-btn:hover {
            background: var(--gold-primary);
            color: var(--bg-primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .pricing-popular .pricing-btn {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
            color: var(--bg-primary);
            border-color: transparent;
        }

        .pricing-popular .pricing-btn:hover {
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
        }

        .pricing-card.featured {
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
        }

        /* Section Title with Gold Underline */
        .pricing-section .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            position: relative;
            z-index: 1;
        }

        .pricing-title-line {
            display: inline-block;
        }

        .pricing-underline {
            display: block;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            width: 80px;
            margin: 1rem auto 0;
        }

        /* Was ist enthalten */
        .pricing-included {
            text-align: center;
            margin-top: 5rem;
            position: relative;
            z-index: 1;
        }

        .pricing-included-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
        }

        .pricing-included-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-included-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .pricing-included-item:hover {
            background: rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.5);
            transform: translateY(-2px);
        }

        .pricing-included-check {
            width: 16px;
            height: 16px;
            color: var(--gold-primary);
            flex-shrink: 0;
        }

        /* Kostenlose Beratung */
        .pricing-consultation {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .pricing-consultation-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
            letter-spacing: 0.1em;
        }

        .pricing-consultation-phone {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gold-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .pricing-consultation-phone:hover {
            color: var(--gold-light);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
            }
            .pricing-card.featured {
                order: -1;
            }
        }

        @media (max-width: 480px) {
            .pricing-section {
                padding: 5rem 1.5rem;
            }
            .pricing-price {
                font-size: 3.5rem;
            }
        }

        /* ========================================
           RESPONSIVE STYLES
        ======================================== */
        @media (max-width: 1024px) {
            .trust-stats-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .trust-stats-grid::before,
            .trust-stats-grid::after {
                display: none;
            }
            .carousel-card {
                width: 360px;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(5, 5, 5, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .services-preview {
                padding: 5rem 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

@media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
                line-height: 1.05;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .section-title {
                font-size: 1.75rem;
                letter-spacing: -0.01em;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .btn {
                padding: 1rem 2rem;
                font-size: 0.8rem;
            }
        }

        /* ========================================
           CONTACT SECTION
        ======================================== */
        .contact-section {
            padding: 8rem 4rem;
            background: var(--bg-secondary);
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 40% 50% at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse 40% 50% at 80% 50%, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .contact-info {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .contact-card {
                padding: 0.625rem 0.75rem;
                gap: 0.5rem;
            }
            .contact-card h4 {
                font-size: 0.85rem;
            }
            .contact-card p, .contact-card a {
                font-size: 0.8rem;
            }
        }

        /* ========================================
           COMPREHENSIVE MOBILE RESPONSIVE (768px)
        ======================================== */
        @media (max-width: 768px) {
            .nav {
                padding: 1rem 1.5rem !important;
            }
            .nav-links {
                display: none !important;
            }
            .nav-toggle {
                display: flex !important;
            }
.hero {
                min-height: 90vh !important;
                padding: 6rem 1.5rem 3rem;
            }
            .hero-content {
                padding: 0 0.5rem;
            }
            .hero-overlay {
                background: linear-gradient(
                    180deg,
                    rgba(5, 5, 5, 0.85) 0%,
                    rgba(5, 5, 5, 0.6) 40%,
                    rgba(5, 5, 5, 0.8) 70%,
                    rgba(5, 5, 5, 0.98) 100%
                ) !important;
            }
.hero-ctas {
                flex-direction: column !important;
                gap: 1rem !important;
                width: 100%;
                padding: 0 1.5rem;
            }
            .hero-ctas .btn {
                width: 100% !important;
                justify-content: center;
                padding: 1.2rem 2rem !important;
            }
            .scroll-indicator {
                bottom: 1.5rem !important;
            }

.hero-bg-image {
                transform: none !important;
                object-fit: cover !important;
                object-position: center center !important;
                width: 100% !important;
                height: 100% !important;
                min-height: 90vh !important;
            }

/* Services */
            .services-preview {
                padding: 4rem 1.5rem 8rem !important;
                overflow: hidden !important;
            }
            .services-grid {
                grid-template-columns: 1fr !important;
                gap: 1.25rem !important;
            }
            .service-card {
                padding: 1.75rem 1.25rem !important;
                overflow: hidden !important;
            }
            .service-card::after {
                display: none !important;
            }

            /* About */
            .about-section {
                padding: 4rem 1.5rem !important;
                overflow: hidden !important;
                max-width: 100vw !important;
            }
            .about-container {
                max-width: 100% !important;
                padding: 0 !important;
                overflow: hidden !important;
            }
            .about-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
            .about-image-wrapper {
                max-width: 100% !important;
                overflow: hidden !important;
                position: relative !important;
            }
            .about-image {
                height: 240px !important;
                max-width: 100% !important;
                width: 100% !important;
                object-fit: cover !important;
            }
            .about-image-accent,
            .about-image-wrapper::after {
                display: none !important;
            }
            .about-content {
                max-width: 100% !important;
                padding: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }
            .about-title-main {
                font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
                line-height: 1.2 !important;
                word-break: break-word !important;
            }
            .about-text {
                font-size: 0.95rem !important;
                line-height: 1.6 !important;
                word-break: break-word !important;
            }
            .trust-badges {
                gap: 0.75rem !important;
            }
            .trust-badge {
                padding: 0.75rem !important;
                gap: 0.75rem !important;
            }
            .trust-badge-label {
                font-size: 0.8rem !important;
                line-height: 1.3 !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
            }
            .trust-badge-icon {
                width: 36px !important;
                height: 36px !important;
                min-width: 36px !important;
                flex-shrink: 0 !important;
            }
            .trust-badge-icon svg {
                width: 18px !important;
                height: 18px !important;
            }
            /* Why us grid - 2 cols on mobile */
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1rem !important;
            }
            .why-us-card {
                padding: 1.25rem 0.75rem !important;
            }
            .why-us-icon {
                width: 40px !important;
                height: 40px !important;
            }
            .why-us-icon svg {
                width: 20px !important;
                height: 20px !important;
            }
            .why-us-card h4 {
                font-size: 0.7rem !important;
                line-height: 1.2 !important;
            }
            .why-us-card p {
                font-size: 0.8rem !important;
                line-height: 1.3 !important;
            }

            /* Stats */
            .trust-bar-stats {
                padding: 4rem 1.5rem !important;
            }
            .trust-stats-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
            .trust-stats-grid::before,
            .trust-stats-grid::after {
                display: none !important;
            }

            /* Testimonials */
.testimonial-carousel-section {
                padding: 4rem 0 3rem !important;
                overflow: hidden !important;
            }
            .carousel-wrapper {
                overflow: hidden !important;
                max-width: 100vw !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .carousel-track {
                overflow: hidden !important;
                max-width: 100vw !important;
            }
            .carousel-card {
                width: min(82vw, 280px) !important;
                max-width: 280px !important;
                padding: 1.25rem !important;
                flex-shrink: 0 !important;
            }
/* Remove carousel animation on mobile - too heavy to load */
            .carousel-track {
                animation: none !important;
            }
            .carousel-wrapper {
                overflow-x: auto !important;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
            }
            .carousel-card {
                scroll-snap-align: start;
            }
            .testimonials-section {
                padding-bottom: 7rem !important;
            }
            /* Google badge - fix overflow on mobile */
            .google-badge-section {
                padding: 2rem 1rem 4rem !important;
                max-width: 100% !important;
                overflow: hidden !important;
            }
            .google-badge {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 0.75rem !important;
                padding: 1.25rem 1rem !important;
                border-radius: 1.5rem !important;
                width: calc(100vw - 2rem) !important;
                max-width: calc(100vw - 2rem) !important;
                box-sizing: border-box !important;
                margin: 0 auto !important;
                text-align: center !important;
            }
            .google-badge-icon {
                width: 40px !important;
                height: 40px !important;
                min-width: 40px !important;
                max-width: 40px !important;
                font-size: 1.2rem !important;
            }
            .google-badge-content {
                text-align: center !important;
                width: 100% !important;
            }
            .google-badge-rating {
                font-size: 1.5rem !important;
                justify-content: center !important;
                flex-wrap: wrap !important;
            }
            .google-badge-stars {
                font-size: 1rem !important;
            }
            .google-badge-reviews {
                font-size: 0.7rem !important;
                word-wrap: break-word !important;
            }
            .google-badge-label {
                margin-left: 0 !important;
                padding-left: 0 !important;
                border-left: none !important;
                padding-top: 0.75rem !important;
                border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
                width: 100% !important;
                max-width: 100% !important;
                text-align: center !important;
                font-size: 0.8rem !important;
            }

            /* Pricing */
            .pricing-section {
                padding: 4rem 1.5rem !important;
            }
            .pricing-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            .pricing-card {
                padding: 2rem 1.5rem !important;
            }

/* Contact - extra top padding to clear fixed nav */
            .contact-section {
                padding: 5.5rem 1.5rem 4rem !important;
            }
            .contact-container {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
            .contact-form-wrap {
                padding: 1.5rem !important;
            }
            .form-input,
            .form-textarea,
            .form-select {
                font-size: 16px !important;
            }

            /* CTA */
            .cta-section {
                padding: 4rem 1.5rem !important;
            }
            .cta-btn-large {
                padding: 1.1rem 2rem !important;
                font-size: 0.85rem !important;
                gap: 10px !important;
            }

            /* Footer */
            .footer {
                padding: 2.5rem 1.5rem !important;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
        }

        /* ========================================
           SMALL MOBILE (480px)
        ======================================== */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem !important;
            }
            .hero-subtitle {
                font-size: 1rem !important;
            }
.section-title {
                font-size: 1.5rem !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
                line-height: 1.2 !important;
            }
            .title-animate {
                overflow: visible !important;
            }
            .title-animate-inner {
                white-space: normal !important;
                word-break: break-word !important;
            }
            .trust-stat-number {
                font-size: 2.5rem !important;
            }
            .contact-card {
                padding: 0.75rem !important;
                gap: 0.75rem !important;
            }
            .contact-card h4 {
                font-size: 0.95rem !important;
            }
            .contact-card p, .contact-card a {
                font-size: 0.85rem !important;
            }
            .contact-card-icon {
                width: 32px !important;
                min-width: 32px !important;
                max-width: 32px !important;
                min-height: 32px !important;
                max-height: 32px !important;
            }
            .form-group {
                margin-bottom: 1.25rem !important;
            }

            /* Google badge - even tighter on small phones */
            .google-badge {
                padding: 1rem 0.75rem !important;
                gap: 0.5rem !important;
                width: calc(100vw - 1.5rem) !important;
                max-width: calc(100vw - 1.5rem) !important;
            }
            .google-badge-rating {
                font-size: 1.25rem !important;
            }
            .google-badge-label {
                font-size: 0.7rem !important;
            }

            /* Carousel card smaller on small phones */
            .carousel-card {
                width: min(82vw, 300px) !important;
                padding: 1.25rem !important;
            }
            .carousel-text {
                font-size: 0.9rem !important;
                line-height: 1.6 !important;
            }
            .carousel-avatar {
                width: 44px !important;
                height: 44px !important;
            }


            /* Pricing included section stack on mobile */
            .pricing-included {
                flex-direction: column !important;
                gap: 0.75rem !important;
                text-align: center;
            }
            .pricing-included-item {
                justify-content: center;
            }
            .pricing-consultation {
                flex-direction: column !important;
                gap: 0.5rem !important;
                text-align: center;
            }

            /* Global mobile safety - prevent any text/element overflow */
            body * {
                max-width: 100% !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }
            img {
                max-width: 100% !important;
                height: auto !important;
            }
            /* But allow carousel cards to keep their explicit width */
            .carousel-card {
                max-width: 300px !important;
            }

            /* New sections mobile polish */
            .hero-badge-row {
                gap: 0.5rem;
            }
            .hero-badge {
                font-size: 0.65rem !important;
                padding: 5px 10px !important;
            }
            .how-it-works-section {
                padding: 4rem 1rem !important;
            }
            .referral-section {
                padding: 3rem 1rem !important;
            }
            .referral-card {
                padding: 2rem 1rem !important;
            }
            .referral-title {
                font-size: 1.4rem !important;
            }
            .steps-grid {
                gap: 2.5rem !important;
            }
            .step-number {
                width: 60px !important;
                height: 60px !important;
                font-size: 1.3rem !important;
            }
            .step-card h3 {
                font-size: 1.1rem !important;
            }
            .step-card p {
                font-size: 0.85rem !important;
            }
            .form-trust-badges {
                gap: 0.75rem !important;
            }
            .form-trust-item {
                font-size: 0.7rem !important;
            }
            .sticky-cta-text {
                font-size: 0.85rem !important;
            }
            .sticky-cta-btn {
                font-size: 0.7rem !important;
                padding: 8px 14px !important;
            }

            /* FAQ touch targets — increase padding for easier tapping */
            .faq-question {
                padding: 2rem 1.75rem !important;
                font-size: 0.9rem !important;
            }
            .faq-answer p {
                font-size: 0.85rem !important;
                line-height: 1.65 !important;
            }
        }

        /* Contact Info (Left Column) */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: stretch;
            overflow: hidden;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            word-break: normal;
        }

        .contact-info-header {
            margin-bottom: 1rem;
            overflow: hidden;
            max-width: 100%;
            word-break: normal;
        }

        .contact-info-header * {
            word-break: normal;
            overflow-wrap: normal;
        }

        .contact-info-header .section-label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: 0.75rem;
        }

        .contact-info-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }

        .contact-info-header p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Contact Cards */
        .contact-card {
            background: rgba(26, 26, 26, 0.6);
            border: 1px solid rgba(212, 175, 55, 0.12);
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.35s ease;
            overflow: hidden;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            word-break: normal;
            flex-shrink: 0;
}

        /* Narrow laptop / small desktop (900px–1024px) — prevent nav overflow */
        @media (max-width: 1024px) and (min-width: 769px) {
            .nav {
                padding: 1rem 1.5rem !important;
            }
            .nav-links {
                gap: 1.25rem !important;
            }
            .nav-links a {
                font-size: 0.78rem !important;
                letter-spacing: 0.04em !important;
            }
            .nav-cta {
                padding: 0.6rem 1rem !important;
                font-size: 0.72rem !important;
                letter-spacing: 0.05em !important;
            }
        }

        .contact-card:hover {
            border-color: rgba(212, 175, 55, 0.35);
            background: rgba(26, 26, 26, 0.9);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .contact-card-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            max-width: 28px;
            min-height: 28px;
            max-height: 28px;
            flex-shrink: 0;
            border-radius: 6px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-primary);
            transition: all 0.35s ease;
            padding: 0;
            margin: 0;
            overflow: hidden;
            box-sizing: border-box;
            line-height: 1;
        }

        .contact-card:hover .contact-card-icon {
            background: rgba(212, 175, 55, 0.2);
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
        }

        .contact-card-icon svg {
            width: 16px !important;
            height: 16px !important;
            min-width: 16px !important;
            min-height: 16px !important;
            max-width: 16px !important;
            max-height: 16px !important;
            display: block;
            flex-shrink: 0;
        }

        .contact-card-icon i,
        .contact-card-icon .fa,
        .contact-card-icon .fas,
        .contact-card-icon .fab,
        .contact-card-icon .far {
            font-size: 12px !important;
            width: 14px !important;
            height: 14px !important;
            line-height: 1 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .contact-card-icon i::before,
        .contact-card-icon .fa::before,
        .contact-card-icon .fas::before {
            font-size: 12px !important;
            line-height: 1 !important;
        }

        .contact-card-icon * {
            width: 16px !important;
            height: 16px !important;
            min-width: 16px !important;
            min-height: 16px !important;
            max-width: 16px !important;
            max-height: 16px !important;
        }

        .contact-card-icon span {
            font-size: 14px !important;
            line-height: 1 !important;
            display: block !important;
            width: 16px !important;
            height: 16px !important;
            text-align: center !important;
        }

        .contact-card-content h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.35rem;
        }

        .contact-card-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .contact-card-content a {
            color: var(--gold-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card-content a:hover {
            color: var(--gold-light);
        }

        /* CSS-only Berlin Map */
        .berlin-map {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: var(--bg-tertiary);
            border-radius: 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.15);
            overflow: hidden;
            margin-top: 1rem;
        }

        .berlin-map-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
            background-size: 28px 28px;
        }

        .berlin-map-river {
            position: absolute;
            width: 55%;
            height: 4px;
            background: rgba(0, 180, 216, 0.3);
            top: 40%;
            left: 22%;
            border-radius: 4px;
            transform: rotate(-15deg);
        }

        .berlin-map-s1 {
            position: absolute;
            width: 70px;
            height: 70px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            top: 20%;
            left: 35%;
            border-radius: 4px;
            background: rgba(212, 175, 55, 0.03);
        }

        .berlin-map-s2 {
            position: absolute;
            width: 50px;
            height: 50px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            top: 55%;
            left: 55%;
            border-radius: 4px;
            background: rgba(212, 175, 55, 0.03);
        }

        .berlin-map-s3 {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 180, 216, 0.15);
            top: 30%;
            left: 15%;
            border-radius: 4px;
            background: rgba(0, 180, 216, 0.03);
        }

        .berlin-map-pulse {
            position: absolute;
            width: 16px;
            height: 16px;
            background: var(--gold-primary);
            border-radius: 50%;
            top: 42%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
            animation: berlinPulse 2s infinite;
        }

        .berlin-map-pulse::before {
            content: '';
            position: absolute;
            inset: -6px;
            border: 2px solid var(--gold-primary);
            border-radius: 50%;
            opacity: 0.4;
        }

        @keyframes berlinPulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
            70% { box-shadow: 0 0 0 18px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }

        .berlin-map-label {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold-primary);
            background: rgba(5, 5, 5, 0.8);
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            white-space: nowrap;
        }

        .berlin-map-title {
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Hours Badge */
        .hours-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 3rem;
            padding: 0.85rem 1.75rem;
            margin-top: 0.5rem;
        }

        .hours-badge-dot {
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            animation: hoursPulse 2s infinite;
        }

        @keyframes hoursPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.8); }
        }

        .hours-badge-text {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .hours-badge-text strong {
            color: var(--text-primary);
        }

        /* Contact Form (Right Column) */
        .contact-form-wrap {
            background: rgba(26, 26, 26, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.12);
            border-radius: 1.5rem;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .contact-form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

.contact-form-header h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .contact-form-header p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Floating Label Form */
        .form-group {
            position: relative;
            margin-bottom: 1.75rem;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            background: rgba(15, 15, 15, 0.9);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 12px;
            padding: 1.15rem 1.25rem 0.75rem;
            color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            appearance: none;
            -webkit-appearance: none;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--gold-primary);
            background: rgba(15, 15, 15, 1);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), 0 0 25px rgba(212, 175, 55, 0.1);
        }

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

        .form-select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 3rem;
        }

        /* Floating Labels */
        .form-label {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.95rem;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            padding: 0 0.25rem;
        }

        .form-textarea ~ .form-label {
            top: 1.4rem;
            transform: none;
        }

        .form-input:focus ~ .form-label,
        .form-input:not(:placeholder-shown) ~ .form-label,
        .form-textarea:focus ~ .form-label,
        .form-textarea:not(:placeholder-shown) ~ .form-label,
        .form-select:focus ~ .form-label,
        .form-select:not([value=""]) ~ .form-label {
            top: 0;
            transform: translateY(-50%);
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gold-primary);
            background: var(--bg-tertiary);
        }

        .form-textarea:focus ~ .form-label,
        .form-textarea:not(:placeholder-shown) ~ .form-label {
            transform: none;
            top: -0.6rem;
        }

        /* Submit Button - Shimmer */
        .btn-shimmer {
            width: 100%;
            padding: 1.15rem 2rem;
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
            border: none;
            border-radius: 0.75rem;
            color: var(--bg-primary);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
        }

        .btn-shimmer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transform: skewX(-20deg);
            animation: shimmerSlide 2.5s ease-in-out infinite;
        }

        @keyframes shimmerSlide {
            0% { left: -100%; }
            50%, 100% { left: 150%; }
        }

        .btn-shimmer:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
        }

        .btn-shimmer:active {
            transform: translateY(-1px);
        }

        /* Form Success */
        .form-success {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .form-success.show {
            display: block;
        }

        .form-success-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            background: rgba(34, 197, 94, 0.1);
            border: 2px solid #22c55e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #22c55e;
            animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-success-icon svg {
            width: 32px;
            height: 32px;
        }

        @keyframes successPop {
            0% { transform: scale(0); opacity: 1; }
            70% { transform: scale(1.2); }
            100% { transform: scale(1); opacity: 1; }
        }

        .form-success h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .form-success p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ========================================
           ENHANCED FOOTER (4 Columns)
        ======================================== */
        .footer-enhanced {
            background: #050505;
            border-top: 3px solid var(--gold-primary);
            position: relative;
            overflow: hidden;
        }

        .footer-enhanced::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, rgba(212, 175, 55, 0.08), transparent);
            pointer-events: none;
        }

        .footer-main {
            padding: 5rem 4rem 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-col-logo .footer-logo-icon {
            width: 45px;
            height: 45px;
            margin-bottom: 1rem;
        }

        .footer-col-logo .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--gold-primary);
            display: block;
            margin-bottom: 1rem;
        }

        .footer-col-logo p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-social-link:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            background: rgba(212, 175, 55, 0.08);
            transform: translateY(-3px);
        }

.footer-col h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 25px;
            height: 2px;
            background: var(--gold-primary);
            border-radius: 2px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-col ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-primary);
            transition: width 0.3s ease;
        }

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

        .footer-col ul li a:hover::after {
            width: 100%;
        }

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

        .footer-contact-item svg {
            width: 18px;
            height: 18px;
            color: var(--gold-primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-item span,
        .footer-contact-item a {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* Footer Bottom Bar */
        .footer-bottom {
            border-top: 1px solid rgba(245, 245, 245, 0.05);
            padding: 1.5rem 4rem;
            position: relative;
            z-index: 1;
        }

        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

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

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

        .footer-legal a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            position: relative;
            transition: color 0.3s ease;
        }

        .footer-legal a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-primary);
            transition: width 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--gold-primary);
        }

        .footer-legal a:hover::after {
            width: 100%;
        }

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

@media (max-width: 768px) {
            .contact-section {
                padding: 5rem 2rem;
            }
            .contact-form-wrap {
                padding: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 2.5rem;
            }
            .footer-main {
                padding: 3rem 1.5rem 2rem;
            }
            .footer-bottom {
                padding: 1.5rem 1.5rem;
            }
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-col {
                width: 100% !important;
                max-width: 100% !important;
            }
        }
    


        /* SCROLL PROGRESS BAR */
        .scroll-progress {
            position: fixed; top: 0; left: 0; height: 3px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
            z-index: 10000; width: 0%; transition: width 0.05s linear;
            box-shadow: 0 0 12px rgba(212,175,55,0.6);
        }
        /* PARALLAX HERO */
        .parallax-hero { will-change: transform; backface-visibility: hidden; }
        /* ANIMATE IN (Fade Up) */
        .animate-in { opacity: 1; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .animate-in.visible { opacity: 1; transform: translateY(0); }
        /* STAGGER CHILDREN */
        .stagger-children > * { opacity: 1; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .stagger-children > *:nth-child(1) { transition-delay: 0.0s; }
        .stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
        .stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
        .stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
        .stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
        .stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
        .stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
        .stagger-children > *:nth-child(8) { transition-delay: 0.7s; }
        .stagger-children.visible > * { opacity: 1; transform: translateY(0); }
        /* SLIDE IN SIDES */
        .slide-left { opacity: 1; transform: translateX(-60px); transition: opacity 1s ease-out, transform 1s ease-out; }
        .slide-right { opacity: 1; transform: translateX(60px); transition: opacity 1s ease-out, transform 1s ease-out; }
        .slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }
        /* SCALE UP */
        .scale-up { opacity: 1; transform: scale(0.8); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
        .scale-up.visible { opacity: 1; transform: scale(1); }
        /* SECTION TITLE UNDERLINE */
        .title-animate { display: block; overflow: hidden; }
        .title-animate-inner { display: block; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
        .title-animate.visible .title-animate-inner { transform: translateY(0); }
        .title-underline { display: block; height: 2px; background: var(--gold-primary); width: 0; transition: width 0.8s ease-out 0.4s; margin: 12px auto 0; }
        .title-underline.visible { width: 60px; }
        /* NAV ACTIVE HIGHLIGHT */
        .nav-links a.nav-active { color: var(--gold-primary) !important; }
    


        /* ===== BUTTON SHIMMER HOVER ===== */
        .btn {
            position: relative;
            overflow: hidden;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }
        .btn:hover::after {
            left: 100%;
        }
        .btn span, .btn svg {
            position: relative;
            z-index: 1;
        }
        
        /* ===== RIPPLE ON CLICK ===== */
        .btn {
            cursor: pointer;
        }
        @keyframes ripple {
            0% {
                transform: scale(0);
                opacity: 0.6;
            }
            100% {
                transform: scale(4);
                opacity: 1; }
        }
        
        /* ===== SERVICE CARD LIFT ===== */
        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.3),
                0 0 40px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.5);
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card .service-icon {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-card:hover .service-icon {
            transform: translateY(-5px) scale(1.1);
            background: rgba(212, 175, 55, 0.2);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        
        /* ===== FLOATING LABELS ON FORM INPUTS ===== */
        .form-group {
            position: relative;
            margin-bottom: 1.5rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.25rem;
            padding-top: 1.75rem;
            background: var(--bg-tertiary);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 4px;
            color: var(--text-primary);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }
        .form-group label {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.95rem;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            padding: 0 0.25rem;
        }
        .form-group textarea ~ label {
            top: 1.5rem;
            transform: none;
        }
        .form-group input:focus ~ label,
        .form-group input:not(:placeholder-shown) ~ label,
        .form-group textarea:focus ~ label,
        .form-group textarea:not(:placeholder-shown) ~ label {
            top: 0;
            transform: translateY(-50%);
            font-size: 0.75rem;
            color: var(--gold-primary);
            background: var(--bg-secondary);
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: transparent;
        }
        
        /* ===== GOLD FOCUS BORDER ON INPUTS ===== */
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--gold-primary);
            box-shadow: 
                0 0 0 1px var(--gold-primary),
                0 0 20px rgba(212, 175, 55, 0.2);
        }
        
        /* ===== LINK UNDERLINE SLIDE-IN ===== */
        a:not(.btn):not(.nav-cta) {
            position: relative;
            text-decoration: none;
            color: inherit;
        }
        a:not(.btn):not(.nav-cta)::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-primary);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        a:not(.btn):not(.nav-cta):hover::after {
            width: 100%;
        }
        a:not(.btn):not(.nav-cta):hover {
            color: var(--gold-primary);
        }
        
        /* ===== INPUT ERROR STATE ===== */
        .form-group.error input,
        .form-group.error textarea {
            border-color: #e74c3c;
            animation: shake 0.4s ease;
        }
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            20% { transform: translateX(-8px); }
            40% { transform: translateX(8px); }
            60% { transform: translateX(-4px); }
            80% { transform: translateX(4px); }
        }
        
        /* ===== INPUT VALID STATE ===== */
        .form-group.valid input,
        .form-group.valid textarea {
            border-color: var(--teal);
        }
        .form-group.valid input::after,
        .form-group.valid textarea::after {
            content: '✓';
            color: var(--teal);
        }

        /* ===== FORM ERROR MESSAGE ===== */
        .form-error-msg {
            color: #FCA5A5;
            font-size: 0.75rem;
            margin-top: 0.25rem;
            display: block;
        }

        /* ===== INPUT ERROR STATE ===== */
        .input-error {
            border-color: rgba(220, 38, 38, 0.5) !important;
            animation: shake 0.4s ease;
        }
    


        /* ========================================
           PARTICLE SYSTEM & BACKGROUND EFFECTS
           All effects: z-index 0-5 (behind content at z-index 10+)
        ======================================== */

        /* ======================================== */
        .floating-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
            z-index: 2;
            animation: orbFloat 20s ease-in-out infinite alternate;
        }
        .floating-orb-1 {
            width: 600px; height: 600px;
            top: -200px; left: -200px;
            background: radial-gradient(circle, rgba(50, 10, 70, 0.5) 0%, transparent 70%);
            animation-duration: 25s;
        }
        .floating-orb-2 {
            width: 500px; height: 500px;
            bottom: -150px; right: -100px;
            background: radial-gradient(circle, rgba(5, 30, 25, 0.6) 0%, transparent 70%);
            animation-duration: 30s;
            animation-delay: -12s;
        }
        .floating-orb-3 {
            width: 400px; height: 400px;
            top: 50%; left: 55%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
            animation-duration: 18s;
            animation-delay: -6s;
        }
        .floating-orb-4 {
            width: 350px; height: 350px;
            bottom: 20%; left: 5%;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
            animation-duration: 22s;
            animation-delay: -9s;
        }
        @keyframes orbFloat {
            0%   { transform: translate(0, 0) scale(1); }
            33%  { transform: translate(25px, -35px) scale(1.05); }
            66%  { transform: translate(-15px, 20px) scale(0.95); }
            100% { transform: translate(15px, -10px) scale(1.03); }
        }

        @keyframes glowPulse {
            0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
        }
        .glow-orb-hero {
            transform-origin: center;
            animation-name: glowPulseHero;
        }
        @keyframes glowPulseHero {
            0%   { opacity: 0.4; transform: scale(0.85); }
            100% { opacity: 0.8; transform: scale(1.15); }
        }
        .glow-orb-service {
            transform-origin: top center;
            animation-name: glowPulseService;
        }
        @keyframes glowPulseService {
            0%   { opacity: 0.3; transform: translateX(-50%) scale(0.9); }
            100% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
        }

        /* --- Gold horizontal glow lines with box-shadow --- */
        .glow-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.3), transparent);
            box-shadow:
                0 0 10px 1px rgba(212, 175, 55, 0.25),
                0 0 25px 3px rgba(212, 175, 55, 0.1);
            animation: lineGlow 4s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 3;
        }
        .glow-line-1 { top: 18%; left: 8%; width: 25%; animation-duration: 5s; }
        .glow-line-2 { top: 40%; right: 5%; width: 18%; animation-duration: 3s; animation-delay: -1.5s; }
        .glow-line-3 { bottom: 25%; left: 20%; width: 15%; animation-duration: 6s; animation-delay: -3s; }
        .glow-line-4 { top: 65%; right: 20%; width: 12%; animation-duration: 4s; animation-delay: -2s; }
        .glow-line-5 { top: 80%; left: 8%; width: 20%; animation-duration: 7s; animation-delay: -4s; }
        @keyframes lineGlow {
            0%   { opacity: 0.3; box-shadow: 0 0 8px 1px rgba(212, 175, 55, 0.15), 0 0 20px 2px rgba(212, 175, 55, 0.05); }
            100% { opacity: 0.9; box-shadow: 0 0 20px 3px rgba(212, 175, 55, 0.5), 0 0 40px 6px rgba(212, 175, 55, 0.15); }
        }

        /* --- Star particle field (50+ JS-generated dots) --- */
        .star-particle {
            position: absolute;
            width: 3px; height: 3px;
            background: #D4AF37;
            border-radius: 50%;
            pointer-events: none;
            z-index: 3;
        }

        /* --- Card glow: service cards subtle gold shadow on hover --- */
        .service-card:hover {
            box-shadow:
                0 25px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(212, 175, 55, 0.12),
                0 0 80px rgba(212, 175, 55, 0.05);
            border-color: rgba(212, 175, 55, 0.3);
        }
        .service-card:hover .service-icon {
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
            border-color: rgba(212, 175, 55, 0.4);
        }

        /* --- Testimonial card glow --- */
        .testimonial-card:hover {
            box-shadow:
                0 15px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(212, 175, 55, 0.08);
            border-color: rgba(212, 175, 55, 0.15);
        }

    


        /* ========================================
           ABOUT SECTION (dark bg #0A0A0A)
        ======================================== */
        .about-section {
            background: #0A0A0A;
            padding: 8rem 4rem;
            position: relative;
            overflow: hidden;
        }
        .about-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }
        .about-image-wrapper {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
        }
        .about-image {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.15);
            display: block;
        }
        .about-image-accent {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 40%, rgba(5, 5, 5, 0.4) 100%);
            pointer-events: none;
            border-radius: 1.5rem;
        }
        .about-image-wrapper::after {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 1.6rem;
            pointer-events: none;
        }
        .about-content {}
        .about-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: 1.5rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
        }
.about-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.15;
            margin-bottom: 2rem;
            letter-spacing: -0.03em;
        }
        .about-title .gold-text { color: var(--gold-primary); font-style: italic; }
        .about-title-main {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.05;
            margin-bottom: 0.5rem;
            letter-spacing: -0.03em;
        }
        .about-title-main::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
            margin-top: 1rem;
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }
        .about-text {
            color: var(--text-secondary);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .about-text-highlight { color: var(--gold-primary); font-weight: 700; }

        /* ========================================
           TRUST BADGES (inside about section)
        ======================================== */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.5rem;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1.25rem;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 0.75rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .trust-badge::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }
        .trust-badge:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateY(-2px); }
        .trust-badge:hover::before { transform: translateX(100%); }
        .trust-badge-icon {
            width: 36px; height: 36px;
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .trust-badge-icon svg { width: 16px; height: 16px; color: var(--gold-primary); }
        .trust-badge-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
        }

        /* ========================================
           WHY CHOOSE US CARDS
        ======================================== */
        .why-us-section {
            margin-top: 1rem;
        }
        .why-us-label {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 3rem;
            letter-spacing: -0.02em;
        }
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .why-us-card {
            background: var(--bg-tertiary);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 1.25rem;
            padding: 2.5rem 1.75rem;
            text-align: center;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .why-us-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.5s ease;
        }
        .why-us-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.25);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.08);
        }
        .why-us-card:hover::before { transform: scaleX(1); }
        .why-us-icon {
            width: 64px; height: 64px;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.4s ease;
        }
        .why-us-card:hover .why-us-icon {
            background: rgba(212, 175, 55, 0.18);
            border-color: rgba(212, 175, 55, 0.4);
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
        }
        .why-us-icon svg { width: 28px; height: 28px; color: var(--gold-primary); }
        .why-us-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--gold-primary);
            margin-bottom: 0.75rem;
            letter-spacing: 0.02em;
        }
        .why-us-card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .why-us-grid { grid-template-columns: repeat(2, 1fr); }
        }
@media (max-width: 768px) {
            .about-section { padding: 5rem 1.5rem; }
            .about-title-main { font-size: 2.5rem; }
            .about-image { height: 300px; }
            .why-us-grid { grid-template-columns: 1fr; }
            .why-us-section { padding-bottom: 6rem !important; }
            .trust-badges { flex-direction: column; }
            .services-preview { padding-bottom: 7rem !important; }
        }

        /* ========================================
           WHATSAPP FLOATING BUTTON
        ======================================== */
.whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 14px 18px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: whatsappPulse 2s ease-in-out infinite;
        }
        .whatsapp-float:hover {
            background: #20BA5C;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
            animation: none;
        }
        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
            50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.12); }
        }
        .whatsapp-float svg {
            width: 26px;
            height: 26px;
            fill: white;
            flex-shrink: 0;
        }
        .whatsapp-float-label {
            display: none;
        }
        @media (min-width: 768px) {
            .whatsapp-float-label { display: inline; }
        }
        @media (max-width: 480px) {
            .whatsapp-float {
                bottom: 20px;
                right: 16px;
                padding: 12px 14px;
            }
        }

        /* ========================================
           BACK TO TOP BUTTON
        ======================================== */
.back-to-top {
            position: fixed;
            bottom: 110px;
            right: 24px;
            z-index: 998;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg-tertiary);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 1; transform: translateY(20px);
            pointer-events: none;
        }
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .back-to-top:hover {
            background: var(--gold-primary);
            color: var(--bg-primary);
            border-color: var(--gold-primary);
        }
@media (max-width: 768px) {
            .whatsapp-float {
                bottom: 90px;
                right: 16px;
                padding: 12px 16px;
            }
            .whatsapp-float svg {
                width: 20px;
                height: 20px;
            }
            .back-to-top {
                right: 12px !important;
                bottom: 80px !important;
            }
        }

        /* ========================================
           STICKY CTA BAR (appears on scroll)
        ======================================== */
.sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            padding: 12px 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        @media (max-width: 480px) {
            .sticky-cta {
                padding: 8px 1rem !important;
            }
            .sticky-cta-text {
                display: none !important;
            }
            .sticky-cta-btns {
                width: 100% !important;
                justify-content: center !important;
            }
            .sticky-cta-btn {
                padding: 8px 16px !important;
                font-size: 0.8rem !important;
            }
        }
        .sticky-cta.visible {
            transform: translateY(0);
        }
        .sticky-cta-text {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--gold-primary);
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .sticky-cta-btns {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .sticky-cta-btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .sticky-cta-btn-primary {
            background: var(--gold-primary);
            color: var(--bg-primary);
        }
        .sticky-cta-btn-primary:hover {
            background: var(--gold-light);
        }
        .sticky-cta-btn-secondary {
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
        }
        .sticky-cta-btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .sticky-close {
            background: none;
            border: 1px solid var(--text-muted);
            color: var(--text-secondary);
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        .sticky-close:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
        }

        /* ========================================
           CONTACT FORM TRUST BADGES
        ======================================== */
        .form-trust-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .form-trust-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        .form-trust-item svg {
            width: 16px;
            height: 16px;
            fill: var(--gold-primary);
        }

        /* ========================================
           EMERGENCY BADGE
        ======================================== */
        .hero-badge-row {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            backdrop-filter: blur(10px);
        }
        .hero-badge-emergency {
            background: rgba(220, 38, 38, 0.2);
            border: 1px solid rgba(220, 38, 38, 0.4);
            color: #FCA5A5;
        }
        .hero-badge-emergency svg {
            width: 14px;
            height: 14px;
            fill: #FCA5A5;
        }
        .hero-badge-sameday {
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #86EFAC;
        }
        .hero-badge-sameday svg {
            width: 14px;
            height: 14px;
            fill: #86EFAC;
        }

        /* ========================================
           MOBILE NAV OVERLAY
        ======================================== */
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 999;
            backdrop-filter: blur(4px);
        }
        .nav-overlay.active {
            display: block;
        }

        /* ========================================
           GOOGLE BADGE LINK
        ======================================== */
        .google-badge-link {
            text-decoration: none;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }
        .google-badge-link:hover .google-rating-text {
            color: #4285F4;
        }
.google-rating-text {
            font-size: 1.1rem;
            color: var(--gold-primary);
            transition: color 0.3s;
        }

        /* ========================================
           MOBILE FIX CYCLE 29 — Audit fixes
        ======================================== */

        /* Issue #1: Hero headline word-wrap — reduce further at very small screens */
        @media (max-width: 420px) {
            .hero-title {
                font-size: 2rem !important;
            }
        }

        /* Issue #2 & #13: Cookie banner — reduce height, enlarge close button */
        .cookie-banner {
            padding: 0.75rem 1.25rem;
            min-height: 70px;
        }
        .cookie-close {
            width: 44px;
            height: 44px;
            font-size: 1.4rem;
            top: 50%;
            transform: translateY(-50%);
            right: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212,175,55,0.1);
            border-radius: 8px;
        }

        /* Issue #5: Cookie banner buttons — increase gap, ensure 44px min height */
        .cookie-btn {
            min-height: 44px;
            min-width: 44px;
            padding: 10px 18px;
        }
        .cookie-btns {
            gap: 12px;
        }

        /* Issue #17: Cookie banner — equal button prominence (remove dark pattern) */
        .cookie-btn-accept {
            background: rgba(212, 175, 55, 0.15);
            color: var(--text-primary);
            border: 1px solid rgba(212, 175, 55, 0.4);
        }
        .cookie-btn-accept:hover {
            background: rgba(212, 175, 55, 0.25);
            color: var(--gold-primary);
        }

        /* Issue #3: Header overlap — add scroll-margin-top to all sections */
        #leistungen,
        #ueber-uns,
        #kundenstimmen,
        #pricing,
        #kontakt,
        #faq,
        #tips,
        #service-area,
        #bewertungen,
        #how-it-works {
            scroll-margin-top: 140px;
        }

        /* Issue #8 & #14: FAQ / Tips sections — ensure top padding clears fixed header on mobile */
        @media (max-width: 768px) {
            .faq-section {
                padding-top: 7rem !important;
            }
            #tips {
                padding-top: 7rem !important;
            }
        }

        /* Issue #4: Trust badge text — fix overflow on mobile */
        .trust-badge {
            max-width: 100%;
            overflow: visible !important;
        }
        .trust-badge-label {
            white-space: normal !important;
            word-break: break-word;
            font-size: 0.72rem;
            line-height: 1.3;
        }

        /* Issue #7: Service cards — increase horizontal padding on mobile */
        @media (max-width: 480px) {
            .service-card {
                padding-left: 1.25rem !important;
                padding-right: 1.25rem !important;
            }
        }

        /* Issue #10: Brand name — reduce on mobile */
        @media (max-width: 480px) {
            .nav-logo-text {
                font-size: 1.1rem !important;
            }
        }

        /* Issue #11: Hamburger menu — add right margin */
        @media (max-width: 768px) {
            .nav-toggle {
                margin-right: 0.5rem;
            }
        }

        /* Issue #15: Urgency banner — increase vertical padding */
        .cta-section span[style*="rgba(220,38,38"] {
            padding: 12px 20px !important;
        }
        .cta-section .cta-content > div:first-child > span {
            padding: 12px 20px !important;
        }

        /* Issue #16: Google reviews font size — increase to at least 14px */
        .google-badge-reviews {
            font-size: 0.85rem !important;
        }
        .google-badge-label {
            font-size: 0.85rem !important;
        }

        /* Issue #6: How It Works — add bottom padding so steps are visible above cookie banner */
        @media (max-width: 768px) {
            .how-it-works-section {
                padding-bottom: 6rem !important;
            }
        }

        /* Issue #9: Step 3 "Genießen" — ensure top padding on mobile */
        @media (max-width: 768px) {
            .step-card {
                padding-top: 1rem;
            }
        }

        /* Issue #12: Service area — reduce excessive empty space on mobile */
        @media (max-width: 768px) {
            .service-area-section {
                padding-top: 5rem !important;
                padding-bottom: 5rem !important;
            }
        }

        /* ========================================
           MOBILE FIX CYCLE 30 — Verifier follow-up fixes
        ======================================== */

        /* Fix 1: Container width overflow — "Über uns" / about section text cut off
           Root cause: .about-content has max-width:1200px not constrained on mobile */
        @media (max-width: 768px) {
            .about-content {
                max-width: 100% !important;
                padding: 0 1.25rem !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .about-title-main {
                font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
                line-height: 1.15 !important;
                max-width: 100% !important;
            }
            .about-text {
                font-size: 0.9rem !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
            }
            .about-section {
                overflow: hidden !important;
            }
            .about-container {
                max-width: 100% !important;
                overflow: hidden !important;
            }
            /* Trust badges inside about — constrain width */
            .trust-badges {
                width: 100% !important;
                max-width: 100% !important;
            }
            .trust-badge {
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
        }

        /* Fix 2: Cookie banner dark pattern — accept button hover was gold, now matches decline */
        .cookie-btn-accept:hover {
            background: rgba(212, 175, 55, 0.1) !important;
            color: var(--text-primary) !important;
        }

        /* Fix 3: Hero headline — reduce size at 480px and add top padding for header clearance */
        @media (max-width: 480px) {
            .hero {
                padding-top: 5rem !important;
                min-height: 100svh !important;
            }
            .hero-title {
                font-size: 1.85rem !important;
                line-height: 1.1 !important;
            }
            .hero-bg-image {
                object-position: center center !important;
                object-fit: cover !important;
            }
        }
        @media (max-width: 420px) {
            .hero-title {
                font-size: 1.65rem !important;
            }
        }

        /* Fix 4: Scroll indicator — push up so it doesn't overlap with CTA buttons */
        @media (max-width: 768px) {
            .scroll-indicator {
                bottom: 1rem !important;
            }
        }




    /* ========================================
       MOBILE FIX CYCLE 33 — Fix the base about-section CSS
       Target: container width overflow at 375px/390px — fix the root element, not just overrides
    ======================================== */

    /* Override the base .about-container max-width on mobile */
    @media (max-width: 768px) {
        .about-container {
            max-width: 100% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            width: 100% !important;
        }
        .about-grid {
            display: block !important;
            width: 100% !important;
            max-width: 100% !important;
            gap: 0 !important;
        }
        .about-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
        }
        .about-image-wrapper img {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
        }
        .about-content {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 1.25rem !important;
            box-sizing: border-box !important;
        }
        .about-title-main {
            font-size: clamp(1.4rem, 7vw, 2rem) !important;
            word-break: break-word !important;
            max-width: 100% !important;
        }
        .about-text {
            word-break: break-word !important;
            max-width: 100% !important;
        }
        .trust-badges, .trust-badge {
            max-width: 100% !important;
            width: 100% !important;
        }
        body { overflow-x: hidden !important; }
        html { overflow-x: hidden !important; }
    }

    /* ========================================
       MOBILE FIX CYCLE 32 — Final minor fixes
    ======================================== */

    /* Fix: Cookie dark pattern — make Accept button outline style matching Decline */
    .cookie-btn-accept {
        background: transparent !important;
        color: var(--text-primary) !important;
        border: 1px solid rgba(212, 175, 55, 0.4) !important;
    }
    .cookie-btn-accept:hover {
        background: rgba(212, 175, 55, 0.1) !important;
        color: var(--gold-primary) !important;
        border-color: var(--gold-primary) !important;
    }

    /* Fix: Cookie close button — ensure 44x44px minimum touch target */
    .cookie-close {
        min-width: 44px !important;
        min-height: 44px !important;
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
        padding: 0 !important;
    }

    /* Fix: Service card vertical padding at 390px */
    @media (max-width: 480px) {
        .service-card {
            padding: 1.5rem 1.25rem !important;
        }
    }
    @media (max-width: 420px) {
        .service-card {
            padding: 1.25rem 1rem !important;
        }
    }
