/* ================================================================
   BRAND SANIERUNGEN - OPTIMIERTE CUSTOM CSS
   Konsolidiert alle inline Styles für bessere Performance
   ================================================================ */

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    animation: floatIn 1s ease-out;
    pointer-events: auto;
}

@keyframes floatIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.floating-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    /* Hardware acceleration */
    will-change: transform;
}

.floating-button::before {
    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.5s;
}

.floating-button:hover::before {
    left: 100%;
}

.floating-button:hover {
    transform: scale(1.15) translateY(-5px) rotate(5deg) translateZ(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white !important;
    text-decoration: none;
}

.floating-button:active {
    transform: scale(1.05) translateZ(0);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #20B856 100%);
    animation: pulse 3s infinite;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #20B856 0%, #1ea049 100%);
    filter: brightness(1.1);
}

.call-button {
    background: linear-gradient(135deg, #d2a34d 0%, #b8912a 100%);
    animation: pulse 3s infinite 1.5s;
}

.call-button:hover {
    background: linear-gradient(135deg, #b8912a 0%, #a0801e 100%);
    filter: brightness(1.1);
}

/* Tooltip */
.floating-button::after {
    content: attr(title);
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: Arial, sans-serif;
}

.floating-button:hover::after {
    opacity: 1;
}

/* ===== FEATURES SECTION ===== */
.features-section .feature-grids {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.features-section .grid {
    padding: 40px 25px;
    text-align: center;
    flex-grow: 1;
    flex-basis: 0;
}

@media (min-width: 768px) {
    .features-section .grid:not(:last-child) {
        border-right: 1px solid #e5e5e5;
    }
}

@media (max-width: 767px) {
    .features-section .feature-grids {
        flex-direction: column;
    }

    .features-section .grid:not(:last-child) {
        border-bottom: 1px solid #e5e5e5;
    }
}

/* ===== SERVICES SECTION ANIMATIONS (PERFORMANCE OPTIMIZED) ===== */
.services-section .service-grids {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Neutralize Bootstrap clearfix pseudo-elements inside flexbox */
.services-section .service-grids.clearfix::before,
.services-section .service-grids.clearfix::after {
    display: none;
}

.services-section .service-grids .grid {
    flex: 0 0 calc(25% - 30px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(210, 163, 77, 0.3);
    background-color: #ffffff;
    text-align: left;
    color: #1a1a1a;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    /* For the premium border effect */
    /* PERFORMANCE-OPTIMIERTE ANIMATIONEN */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    transform-origin: center center;
    /* CSS Fallback Animation falls JS versagt */
    animation: fallbackReveal 1s ease-out 0.5s forwards;
}

@keyframes fallbackReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Margins, die vorher inline im HTML waren (entfernt für responsives Layout) */

/* Animation state - sichtbar werden (OPTIMIZED) */
.services-section .service-grids .grid.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none;
}

.services-section .service-grids .grid:hover {
    background-color: #fafafa;
    border-color: #d2a34d;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    /* Pop over neighboring cards */
}

/* Stagger-animation für jeden Grid-Effekt (PERFORMANCE OPTIMIZED) */
.services-section .service-grids .grid:nth-child(1).is-visible {
    transition-delay: 0ms;
}

.services-section .service-grids .grid:nth-child(2).is-visible {
    transition-delay: 100ms;
}

.services-section .service-grids .grid:nth-child(3).is-visible {
    transition-delay: 200ms;
}

.services-section .service-grids .grid:nth-child(4).is-visible {
    transition-delay: 300ms;
}

/* Bildbereich (PERFORMANCE OPTIMIZED) */
.services-section .service-grids .grid>div:first-child {
    flex: 0 0 200px;
    overflow: hidden;
}

.services-section .service-grids .grid>div:first-child img {
    width: 100%;
    /* Entfernen von translateZ und will-change, um Pixelation/Unschärfe beim GPU Rasterizing zu vermeiden */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
    /* Verhindert leichtes Flackern ohne Rasterfehler */
}

/* Modernerer, sanfter Bildzoom ohne Qualitätsverlust */
.services-section .service-grids .grid:hover>div:first-child img {
    transform: scale(1.05);
    /* Skaliert leicht, aber nicht zu viel, um Unschärfe zu verhindern */
}

/* Textbereich (OPTIMIZED) */
.services-section .service-grids .text_div {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px 40px;
    box-sizing: border-box;
}

.services-section .service-grids .text_div h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 1em;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-section .service-grids .grid:hover .text_div h3 {
    color: #d2a34d;
}

.services-section .service-grids .text_div p {
    color: #333333;
    flex-grow: 1;
    margin: 0 0 1em;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-section .service-grids .grid:hover .text_div p {
    color: #1a1a1a;
}

.services-section .service-grids .read-more {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 0.9333333333rem;
    color: #d2a34d;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    align-self: flex-start;
    /* Aligned left */
}

/* Weiche Unterstreichung beim Hover */
.services-section .service-grids .read-more::after {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    bottom: 0;
    background-color: #d2a34d;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: none;
}

.services-section .service-grids .grid:hover .read-more::after {
    width: 100%;
}

.services-section .service-grids .read-more:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.services-section .service-grids .read-more:hover::after {
    background-color: #1a1a1a;
}


/* ===== PREMIUM PARTNERS SECTION ===== */
.premium-partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.premium-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #020d26 25%, #d2a34d 50%, #020d26 75%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.premium-partners-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(210, 163, 77, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-10px) translateY(-5px);
    }

    50% {
        transform: translateX(10px) translateY(5px);
    }
}

.section-title-premium {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title-premium .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #d2a34d 0%, #b8941f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(210, 163, 77, 0.3);
}

.section-title-premium h2 {
    font-size: 38px;
    font-weight: 800;
    color: #020d26;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-title-premium h2 .highlight {
    background: linear-gradient(135deg, #d2a34d 0%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title-premium p {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.premium-partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(2, 13, 38, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(210, 163, 77, 0.1);
    position: relative;
    width: 350px;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
}

.premium-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #020d26 0%, #d2a34d 50%, #020d26 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.premium-partner-card:hover::before {
    transform: scaleX(1);
}

.premium-partner-card:hover {
    transform: translateY(-12px) translateZ(0);
    box-shadow: 0 20px 60px rgba(2, 13, 38, 0.15);
    border-color: rgba(210, 163, 77, 0.3);
}

/* ===== FOOTER ===== */
.footer-partner {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(210, 163, 77, 0.3);
}

.footer-partner .partner-label {
    font-size: 14px;
    color: #555555 !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-partner-logo {
    display: inline-block;
    padding: 12px 18px;
    background: rgba(210, 163, 77, 0.1);
    border: 1px solid rgba(210, 163, 77, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-partner-logo:hover {
    background: rgba(210, 163, 77, 0.2);
    border-color: rgba(210, 163, 77, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(210, 163, 77, 0.2);
}

.footer-partner-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    transition: all 0.3s ease;
}

.footer-partner-logo:hover img {
    transform: scale(1.05);
}

/* ===== NATIVE LAZY LOADING ===== */
img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

/* ===== SEARCH HIGHLIGHT ===== */
.search-highlight {
    background-color: yellow;
    padding: 2px;
    border-radius: 3px;
}

/* ===== RESPONSIVE DESIGN & PERFORMANCE OPTIMIZATIONS ===== */
@media (max-width: 1199px) and (min-width: 769px) {
    .services-section .service-grids .grid {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .floating-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .floating-button::after {
        display: none;
    }

    .services-section .service-grids .grid {
        flex: 0 0 100%;
        /* Mobile Animationen weniger intensiv */
        transform: translateY(15px);
    }


    .footer-partner {
        margin-top: 25px;
        padding-top: 20px;
    }

    .footer-partner .partner-label {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-partner-logo {
        padding: 10px 15px;
    }

    .footer-partner-logo img {
        height: 30px;
    }
    .lower-footer .divider {
        display: none !important;
    }
    .lower-footer {
        background: rgba(0,0,0,0.2);
        padding: 8px 0 2px !important;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .copyright {
        font-size: 14px !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    .copyright span {
        display: block !important;
    }
    /* Divider on its own line for mobile */
    .copyright .divider {
        display: block !important;
        color: #d2a34d !important;
        margin: 2px 0 !important;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .floating-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    /* Mobile Performance-Optimierung */
    .services-section .service-grids .grid {
        transition-duration: 0.4s;
        /* Kürzere Animationen auf Mobile */
    }
}

/* ACCESSIBILITY & PERFORMANCE - Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
    .services-section .service-grids .grid {
        transition: opacity 0.2s ease !important;
        transform: none !important;
    }

    .services-section .service-grids .grid.is-visible {
        opacity: 1 !important;
        transform: none !important;
    }

    .services-section .service-grids .grid:hover {
        transform: none !important;
    }

    .services-section .service-grids .grid>div:first-child img {
        transition: none !important;
    }

    .services-section .service-grids .grid:hover>div:first-child img {
        transform: none !important;
    }

    /* Alle anderen Animationen deaktivieren */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* PERFORMANCE OPTIMIERUNGEN FÜR SCHWACHE GERÄTE */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {

    /* Weniger intensive Animationen auf Mobile */
    .services-section .service-grids .grid {
        transition-timing-function: ease-out !important;
    }
}

/* GPU-OPTIMIERUNG FÜR MODERNE BROWSER */
@supports (transform: translateY(0)) {
    .services-section .service-grids .grid {
        transform: translateY(30px);
    }

    .services-section .service-grids .grid.is-visible {
        transform: translateY(0);
    }

    .services-section .service-grids .grid:hover {
        transform: translateY(-5px);
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* =========================================
   WHITE-GOLD & LIQUID GLASS THEME OVERRIDES
   ========================================= */

/* --- HERO SECTION --- */
.hero-style-1 .slide-inner::before {
    background: transparent !important;
}

.hero-content-glass {
    background-color: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid #d2a34d !important;
    border-radius: 20px !important;
    padding: 40px !important;
    margin-top: 50px !important;
    display: inline-block;
}

.hero-slider .hero-slogan-small {
    font-size: clamp(34px, 3.7vw, 52px) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 0.1px;
    color: #151222 !important;
    margin-bottom: 18px !important;
}

@media (min-width: 992px) {
    .hero-slider .hero-slogan-small {
        font-size: clamp(28px, 2.85vw, 44px) !important;
        line-height: 1.18 !important;
    }

    .hero-slider .hero-slogan-small .gold-underline {
        white-space: nowrap;
    }
}

.hero-slider .hero-slogan-small .hero-line {
    display: block;
}

.hero-slider .hero-description-text {
    font-size: clamp(16px, 1.08vw, 19px) !important;
    line-height: 1.55 !important;
    margin-bottom: 36px !important;
}

.hero-slider .hero-slogan-small .gold-underline {
    position: relative;
    display: inline-block;
    font-size: 1em !important;
    font-weight: 800;
    color: #151222;
    z-index: 0;
}

.hero-slider .hero-slogan-small .gold-underline::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 58%;
    border-radius: 10px 15px 9px 12px;
    background: linear-gradient(90deg, rgba(255, 238, 176, 0.86) 0%, rgba(241, 200, 98, 0.9) 36%, rgba(224, 176, 63, 0.9) 68%, rgba(210, 156, 35, 0.86) 100%);
    box-shadow: 0 4px 14px rgba(210, 163, 77, 0.34);
    transform: translateY(-30%) scaleX(0.06) skewX(-14deg);
    transform-origin: left center;
    opacity: 0;
    z-index: -1;
    animation: markerSwipe 1.55s cubic-bezier(0.2, 0.9, 0.25, 1) 0.2s forwards,
               markerSettle 1.3s ease-in-out 1.8s 1;
}

.hero-slider .hero-slogan-small .gold-underline::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 54%;
    width: 30px;
    height: 38%;
    border-radius: 10px;
    background: radial-gradient(circle at 30% 50%, rgba(255, 248, 214, 0.96) 0%, rgba(255, 248, 214, 0.24) 65%, rgba(255, 248, 214, 0) 100%);
    transform: translateY(-30%) skewX(-14deg);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    animation: markerTip 1.55s cubic-bezier(0.2, 0.9, 0.25, 1) 0.2s 1;
}

@keyframes markerSwipe {
    0% { transform: translateY(-30%) scaleX(0.06) skewX(-14deg); opacity: 0; }
    18% { opacity: 0.72; }
    62% { transform: translateY(-30%) scaleX(1.06) skewX(-14deg); opacity: 0.84; }
    78% { transform: translateY(-30%) scaleX(0.98) skewX(-14deg); opacity: 0.79; }
    100% { transform: translateY(-30%) scaleX(1) skewX(-14deg); opacity: 0.68; }
}

@keyframes markerTip {
    0% { transform: translate(-14px, -30%) skewX(-14deg); opacity: 0; }
    30% { opacity: 0.92; }
    85% { opacity: 0.45; }
    100% { transform: translate(165px, -30%) skewX(-14deg); opacity: 0; }
}

@keyframes markerSettle {
    0% { box-shadow: 0 3px 12px rgba(210, 163, 77, 0.2); }
    45% { box-shadow: 0 7px 24px rgba(210, 163, 77, 0.46); }
    100% { box-shadow: 0 4px 14px rgba(210, 163, 77, 0.34); }
}

@media (max-width: 768px) {
    .header-style-1 {
        position: absolute !important;
    }
    
    /* WICHTIG: Überschreibt die feste 500px Höhe aus style.css */
    .hero-slider {
        height: auto !important;
        min-height: 100vh !important;
    }
    
    .hero-slider.hero-style-1, .hero-slider.hero-style-1 .swiper-slide {
        height: auto !important;
        min-height: 100vh !important;
    }
    
    .hero-slider.hero-style-1 .slide-inner {
        height: auto !important;
        min-height: 100vh !important;
        padding-top: 140px !important; /* Platz für die Navbar */
        padding-bottom: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    .hero-slider .hero-video {
        height: 100% !important;
        object-position: center center !important;
    }
    
    .hero-content-glass {
        padding: 30px 20px !important;
        margin: 0 auto !important;
        width: 90% !important;
        max-width: 100% !important;
        border-radius: 15px !important;
        display: block !important;
        text-align: center !important;
        background-color: rgba(255, 255, 255, 0.75) !important;
        box-sizing: border-box !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .hero-slider .hero-slogan-small {
        font-size: clamp(22px, 5.3vw, 30px) !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .hero-slider .hero-slogan-small .gold-underline {
        font-weight: 750;
    }
    
    .hero-slider .hero-description-text {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 32px !important;
    }
    
    .hero-content-glass .slide-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 0 !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
    }
    
    .hero-content-glass .slide-btns .theme-btn,
    .hero-content-glass .slide-btns .theme-btn-s2 {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 50px 16px 20px !important;
        font-size: 16px !important;
        border-radius: 50px !important;
        display: block !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        position: relative !important;
    }

    .hero-content-glass .slide-btns .theme-btn::before,
    .hero-content-glass .slide-btns .theme-btn-s2::before {
        display: block !important;
        font-family: "themify" !important;
        content: "\e649" !important;
        font-size: 14px !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: inherit !important;
    }

    .hero-content-glass .slide-btns .theme-btn::after,
    .hero-content-glass .slide-btns .theme-btn-s2::after {
        display: block !important;
        content: "" !important;
        background: currentColor !important;
        opacity: 0.25 !important;
        width: 1px !important;
        height: 100% !important;
        position: absolute !important;
        right: 50px !important;
        top: 0 !important;
    }
    

}


.hero-content-glass .slide-title h2,
.hero-content-glass .slide-title h2 span:not(.gold-highlight),
.hero-content-glass .slide-subtitle span {
    color: #1a1a1a !important;
}

.hero-content-glass .slide-title h2 .gold-highlight {
    color: #d2a34d !important;
}

/* --- BUTTONS --- */
.theme-btn,
.theme-btn-s2 {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid #d2a34d !important;
    border-radius: 50px !important;
    color: #1a1a1a !important;
    transition: all 0.3s ease !important;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.slide-btns .theme-btn:hover,
.slide-btns .theme-btn-s2:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    color: #d2a34d !important;
    border-color: #d2a34d !important;
}

/* --- SERVICES SECTION (LIQUID GLASS KACHELN) --- */
.services-section .service-grids .grid {
    background-color: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid #d2a34d !important;
    border-radius: 20px !important;
    color: #1a1a1a !important;
}

.services-section .service-grids .grid:hover {
    background-color: rgba(255, 255, 255, 0.6) !important;
    border-color: #d2a34d !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.services-section .service-grids .text_div h3 {
    color: #1a1a1a !important;
}

.services-section .service-grids .grid:hover .text_div h3 {
    color: #d2a34d !important;
}

.services-section .service-grids .text_div p {
    color: #333333 !important;
}

.services-section .service-grids .grid:hover .text_div p {
    color: #1a1a1a !important;
}

.services-section .service-grids .icon,
.services-section .service-grids .fi::before,
.services-section .service-grids .img-holder h3 {
    color: #d2a34d !important;
}

/* --- NAVBAR & DROPDOWNS --- */
.navigation.navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(210, 163, 77, 0.3) !important;
}

.navigation.navbar .navbar-nav>li>a {
    color: #1a1a1a !important;
}

.navigation.navbar .navbar-nav>li>a:hover {
    color: #d2a34d !important;
}

.navigation.navbar .sub-menu {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid #d2a34d !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.navigation.navbar .sub-menu>li>a {
    color: #1a1a1a !important;
}

.navigation.navbar .sub-menu>li>a:hover {
    color: #d2a34d !important;
    background: transparent !important;
}

/* Global Dark Blue Replacements for structural sections */
body {
    background-color: #ffffff;
    color: #333333;
}

.about-section,
.about-section-s2,
.about-section-s3,
.portfolio-section {
    background-color: #ffffff !important;
}

/* Modernize Services Section Background (remove blue) */
.services-section {
    background: #f8f9fa !important; /* Light modern gray/white */
}

.services-section::before {
    display: none !important; /* Remove the dark gradient overlay */
}

.services-section .section-title-s2 h2 {
    color: #1a1a1a !important; /* Dark text since background is now light */
}

.services-section .section-title-s2 span {
    color: #d2a34d !important; /* Gold subtitle for accent */
}

.footer-area {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-top: 1px solid #d2a34d !important;
}

/* --- FOOTER MODERNIZATION (Overrides the inline dark-blue style) --- */
.site-footer {
    background: #ffffff !important;
    color: #333333 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.site-footer::before {
    height: 4px !important;
    background: linear-gradient(90deg, #d2a34d 0%, #f4d06f 50%, #d2a34d 100%) !important;
}

.site-footer .widget-title h3 {
    color: #1a1a1a !important;
}

.site-footer .widget-title h3::after {
    background: #d2a34d !important;
}

.site-footer .about-widget p {
    color: #555555 !important;
}

.site-footer .link-widget ul li a {
    color: #555555 !important;
}

.site-footer .link-widget ul li a:hover {
    color: #d2a34d !important;
    padding-left: 20px !important;
}

/* Footer contact items overide */
.site-footer .contact-item .icon {
    background: transparent !important;
    border: 1px solid rgba(210, 163, 77, 0.4) !important;
    color: #d2a34d !important;
}

.site-footer .contact-item .icon i {
    color: #d2a34d !important;
}

.site-footer .contact-info {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
}

.site-footer .contact-item .details p {
    color: #555555 !important;
}

.site-footer .contact-item .details a {
    color: #1a1a1a !important;
    font-weight: 600 !important;
}

.site-footer .contact-item .details a:hover {
    color: #d2a34d !important;
}

/* Footer Social Icons */
.site-footer .social ul li a {
    color: #d2a34d !important;
    border-color: rgba(210, 163, 77, 0.3) !important;
    background: transparent !important;
}

.site-footer .social ul li a:hover {
    background: #d2a34d !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

/* Lower footer */
.site-footer .lower-footer {
    background: #f8f9fa !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-top: 20px !important;
}

.site-footer .lower-footer .row .separator {
    display: none !important; /* Removing the explicit line since we have a border-top */
}

.site-footer .copyright {
    color: #555555 !important;
}

.site-footer .copyright .divider {
    color: #d2a34d !important;
}
/* ------------------------------------------------------------------- */

/* --- SEARCH ICON --- */
.header-search-form-wrapper .search-toggle-btn i {
    color: #1a1a1a !important;
}

.header-search-form-wrapper .search-toggle-btn i:hover {
    color: #d2a34d !important;
}

/* --- GLOBAL COOKIE BANNER OVERRIDES (For hardcoded HTML & JS versions) --- */


#cookie-banner p {
    color: #1a1a1a !important;
}

#cookie-banner p a {
    color: #d2a34d !important;
    font-weight: bold !important;
}

#cookie-banner button.theme-btn,
#cookie-banner button.theme-btn-s2 {
    border: none !important;
    font-weight: bold !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
}

/* Remove weird arrows, lines, pseudo elements coming from theme-btn globals */
#cookie-banner button::before,
#cookie-banner button::after,
#cookie-banner button i {
    display: none !important;
    content: none !important;
    border: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

#cookie-banner button.theme-btn {
    background-color: #d2a34d !important;
    color: #ffffff !important;
}

#cookie-banner button.theme-btn:hover {
    background-color: #b8860b !important;
}

#cookie-banner button.theme-btn-s2 {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

#cookie-banner button.theme-btn-s2:hover {
    background-color: #333333 !important;
}

/* --- FEATURES SECTION (Emojis / Trust Bar) --- */
.features-glass-wrapper {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid #d2a34d !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
}

.features-section .feature-grids .grid {
    background: transparent !important;
    box-shadow: none !important;
}

.features-section .feature-grids .grid:not(:last-child) {
    border-right: 1px solid rgba(210, 163, 77, 0.3) !important;
}

@media (max-width: 767px) {
    .features-section .feature-grids .grid:not(:last-child) {
        border-right: none !important;
        border-bottom: 1px solid rgba(210, 163, 77, 0.3) !important;
    }
}

.features-section .feature-grids .grid h3 {
    color: #1a1a1a !important;
}

.features-section .feature-grids .grid p {
    color: #333333 !important;
}

/* --- NAVBAR LOGO ALIGNMENT FIX (For Brand_Logo.svg) --- */
.header-style-1 .navbar-brand,
.header-style-2 .navbar-brand,
.navbar-brand {
    padding: 15px 0 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.header-style-1 .navbar-brand img,
.header-style-2 .navbar-brand img,
.navbar-brand img {
    height: 85px !important;
    max-height: 85px !important;
    max-width: 350px !important;
    width: auto !important;
    margin: 40px 0 0 15px !important; /* Shift right and down slightly for PC */
    padding: 0 !important;
    object-fit: contain !important;
}

@media (max-width: 991px) {
    .header-style-1 .navbar-brand,
    .header-style-2 .navbar-brand,
    .navbar-brand {
        padding: 5px 15px !important;
    }
    
    .header-style-1 .navbar-brand img,
    .header-style-2 .navbar-brand img,
    .navbar-brand img {
        height: 60px !important;
        max-height: 60px !important;
        margin: 0 !important;
        transform: scale(1.15) !important;
        transform-origin: left center !important;
    }
    
    /* Make the overly thick mobile navbar background area slimmer */
    .header-style-1 .navigation, 
    .header-style-2 .navigation {
        padding: 10px 5px 20px 5px !important;
    }
}

/* --- MODERN MOBILE MENU OVERRIDES --- */
@media (max-width: 991px) {
    /* Reset Navbar Mobile Drawer */
    .site-header #navbar {
        background: #ffffff !important;
        width: 300px !important;
        position: fixed !important;
        right: -320px !important;
        top: 0 !important;
        height: 100vh !important;
        z-index: 1005 !important;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1) !important;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        padding-top: 60px !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        overflow: hidden !important;
    }

    .site-header #navbar.slideInn {
        right: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .site-header .navbar-collapse.collapse {
        display: block !important;
        visibility: visible !important;
    }

    .site-header #navbar:not(.slideInn) .navbar-nav {
        opacity: 0 !important;
    }

    .site-header #navbar.slideInn .navbar-nav {
        opacity: 1 !important;
    }

    /* Mobile Menu Items Alignment */
    .site-header #navbar .navbar-nav {
        margin: 0 !important;
        padding: 20px !important;
        display: block !important;
        width: 100%;
        overflow-y: auto !important;
    }

    .site-header #navbar ul li {
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        margin: 0 !important;
    }

    .site-header #navbar ul li a {
        padding: 15px 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #1a1a1a !important;
        text-decoration: none !important;
    }

    .site-header #navbar ul li a:hover {
        color: #d2a34d !important;
        padding-left: 15px !important;
    }

    /* Submenus on mobile */
    .site-header #navbar .sub-menu {
        position: static !important;
        background: rgba(0,0,0,0.02) !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        padding-left: 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: none; 
    }

    /* Close Button Modernization */
    .site-header #navbar .close-navbar {
        background: rgba(0,0,0,0.05) !important;
        border-radius: 50% !important;
        border: none !important;
        position: absolute !important;
        top: 15px !important;
        right: 20px !important;
        left: auto !important;
        color: #1a1a1a !important;
        font-size: 20px !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        z-index: 1010 !important;
        transition: background 0.3s ease !important;
    }
    .site-header #navbar .close-navbar:hover {
        background: rgba(210, 163, 77, 0.2) !important;
        color: #d2a34d !important;
    }

    /* Hamburger Button Modernization */
    .site-header .navbar-header .open-btn {
        background: rgba(255,255,255,0.9) !important;
        border: 1px solid rgba(210, 163, 77, 0.3) !important;
        border-radius: 8px !important;
        width: 44px !important;
        height: 44px !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 99 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    }

    .site-header .navbar-header .open-btn .icon-bar {
        background-color: #d2a34d !important;
        height: 3px !important;
        width: 22px !important;
        margin: 0 !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }
}

@media (max-width: 767px) {
    /* Scale the whole slogan down slightly so it flows well into 2 lines */
    .hero-slider .hero-slogan-small {
        font-size: clamp(22px, 5.8vw, 28px) !important;
        line-height: 1.4 !important;
    }

    /* Marker same size as the rest of text, forced on one line to keep animation intact */
    .hero-slider .hero-slogan-small .gold-underline {
        font-size: 1em !important;
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .hero-slider .hero-slogan-small .hero-line {
        display: block !important;
    }
}


/* --- PC NAVBAR KONTAKT BUTTON FIX & MODERNIZATION --- */
@media (min-width: 992px) {
    /* Vertikale Zentrierung an der Höhe der Navbar ausrichten */
    .header-style-1 .search-contact, 
    .header-style-2 .search-contact {
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex;
        align-items: center;
    }
    
    /* Such-Icon an Navbar zentrieren, falls es verschoben wirken sollte */
    .header-style-1 .search-contact .header-search-form-wrapper {
        margin-top: 0 !important;
        display: flex;
        align-items: center;
    }
}

/* Modernisierung des Navbar-Kontakt-Buttons */
.site-header .search-contact .contact-btn .theme-btn-s2 {
    border-radius: 50px !important;
    padding: 10px 30px !important; /* Zentriert durch symmetrisches Padding */
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    border: 2px solid #d2a34d !important;
    background-color: transparent !important;
    color: #151222 !important; /* Im unangeklickten Modus immer schwarz */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Wichtig: Auf transparenten Navigationsleisten soll die Schrift weiß sein (wie die anderen Links) */
.header-style-1 .search-contact .contact-btn .theme-btn-s2 {
    color: #151222 !important; /* Immer schwarz, damit auf allen Bildschirmen lesbar */
}

/* Auf weißer Sticky-Navbar oder anderem Style (schwarz/dunkel) */
.original .site-header .search-contact .contact-btn .theme-btn-s2,
.sticky-header .site-header .search-contact .contact-btn .theme-btn-s2 {
    color: #151222 !important;
}

.site-header .search-contact .contact-btn .theme-btn-s2:hover {
    background-color: #d2a34d !important;
    color: #fff !important;
    box-shadow: 0 5px 20px rgba(210, 163, 77, 0.5) !important;
    transform: translateY(-2px) !important;
    border-color: #d2a34d !important;
}

/* Den Strich in der Mitte entfernen */
.site-header .search-contact .contact-btn .theme-btn-s2::after {
    display: none !important;
}

/* Den Pfeil an die neue abgerundete Form anpassen */
.site-header .search-contact .contact-btn .theme-btn-s2::before {
    display: none !important; /* Pfeil ausblenden, um Schrift mittig zu zentrieren */
}

/* ===== HERO KEN BURNS ZOOM ===== */
@keyframes kenburnsZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.15); }
}

.kenburns-bg {
    transition: transform 1.5s ease-out;
    transform: scale(1.0);
    will-change: transform;
}

.swiper-slide-active .kenburns-bg,
.swiper-slide-prev .kenburns-bg,
.swiper-slide-duplicate-active .kenburns-bg,
.swiper-slide-duplicate-prev .kenburns-bg {
    animation: kenburnsZoom 9s linear forwards;
}

.kenburns-slide {
    overflow: hidden; /* Ensure zoom doesn't break edges */
    background-color: #f8f9fa;
}

/* ===== HERO KEN BURNS ZOOM ===== */
@keyframes kenburnsZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.15); }
}

.kenburns-bg {
    transition: transform 1.5s ease-out;
    transform: scale(1.0);
    will-change: transform;
}

.swiper-slide-active .kenburns-bg,
.swiper-slide-prev .kenburns-bg,
.swiper-slide-duplicate-active .kenburns-bg,
.swiper-slide-duplicate-prev .kenburns-bg {
    animation: kenburnsZoom 9s linear forwards;
}

.kenburns-slide {
    overflow: hidden; /* Ensure zoom doesn't break edges */
    background-color: #f8f9fa;
}


/* ================================================================
   KLARO! COOKIE BANNER OVERRIDES (Glassmorphism & Styling)
   ================================================================ */

.klaro {
    font-family: inherit !important;
}

/* "Powered by" / Klaro Branding gnadenlos ausblenden */
.klaro .cm-powered-by,
.klaro .cn-powered-by,
.klaro .powered-by {
    display: none !important;
}

/* Main Banner (Notice) & Modal Background - Glassmorphism */
.klaro .cookie-notice, 
.klaro .cookie-modal {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 2px solid #d2a34d !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    color: #1a1a1a !important;
}

/* Schwebendes Banner am unteren Rand zentrieren */
.klaro .cookie-notice {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 800px !important;
    padding: 25px !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
}

.klaro .cookie-notice .cn-body,
.klaro .cookie-notice .cn-body p {
    color: #1a1a1a !important;
    font-size: 16px !important;
}

/* Links im Banner (z.B. "Einstellungen") in Schwarz + präzise Underline-Animation */
.klaro .cookie-notice a,
.klaro .cookie-notice a:visited,
.klaro .cookie-notice .cn-learn-more,
.klaro .cookie-notice .cn-learn-more:visited {
    color: #1a1a1a !important;
    text-decoration: none !important;
    display: inline-block !important;
    width: auto !important;
    position: relative;
    transition: color 0.25s ease;
}

.link-widget ul li a { color: #b8c5d1; text-decoration: none; font-size: 14px; transition: all 0.3s ease; display: inline-block; white-space: nowrap; position: relative; }

/* Klaro setzt den Einstellungen-Link teils als breites Flex-Item; hier auf Textbreite begrenzen */
.klaro .cookie-notice .cn-ok .cn-learn-more,
.klaro .cookie-notice .cn-buttons .cn-learn-more {
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: none !important;
    margin-right: auto !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.klaro .cookie-notice a::after,
.klaro .cookie-notice .cn-learn-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.klaro .cookie-notice a:hover,
.klaro .cookie-notice a:focus,
.klaro .cookie-notice .cn-learn-more:hover,
.klaro .cookie-notice .cn-learn-more:focus {
    color: #000 !important;
}

.klaro .cookie-notice a:hover::after,
.klaro .cookie-notice a:focus::after,
.klaro .cookie-notice .cn-learn-more:hover::after,
.klaro .cookie-notice .cn-learn-more:focus::after {
    transform: scaleX(1);
}

/* Button-Reihe zentrieren */
.klaro .cookie-notice .cn-ok {
    display: flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-top: 20px !important;
}

/* --------------------
   BUTTON STYLES
   -------------------- */
.klaro .cm-btn, 
.klaro .cn-btn {
    border-radius: 5px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

/* "Alle akzeptieren" Button -> Gold */
.klaro .cm-btn.cm-btn-success,
.klaro .cn-btn.cn-btn-success,
.klaro .cm-btn.cm-btn-accept-all {
    background-color: #d2a34d !important;
    color: #fff !important;
}

.klaro .cm-btn.cm-btn-success:hover,
.klaro .cn-btn.cn-btn-success:hover,
.klaro .cm-btn.cm-btn-accept-all:hover {
    background-color: #b8912a !important;
    transform: translateY(-2px);
}

/* "Ablehnen" / "Einstellungen" Button -> Dunkel */
.klaro .cm-btn.cm-btn-decline,
.klaro .cn-btn.cn-btn-decline,
.klaro .cm-btn.cm-btn-info {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

.klaro .cm-btn.cm-btn-decline:hover,
.klaro .cn-btn.cn-btn-decline:hover,
.klaro .cm-btn.cm-btn-info:hover {
    background-color: #333333 !important;
    transform: translateY(-2px);
}

/* Modal Title und Header anpassen */
.klaro .cookie-modal .cm-header h1 {
    color: #d2a34d !important;
    margin-bottom: 10px !important;
}

/* Switches (Toggles) im Modal */
.klaro .slider {
    background-color: #ccc !important;
}
.klaro .slider.active {
    background-color: #d2a34d !important;
}

/* Modal Schließen Button (X) */
.klaro .cookie-modal .hide svg {
    fill: #1a1a1a !important;
}

/* ================================================================
   KLARO MOBILE FIXES - NUR COOKIE BANNER
   ================================================================ */
@media (max-width: 767px) {
    .klaro .cookie-notice {
        width: calc(100% - 16px) !important;
        max-width: none !important;
        bottom: max(8px, env(safe-area-inset-bottom)) !important;
        padding: 16px 12px calc(12px + env(safe-area-inset-bottom)) !important;
        max-height: calc(100dvh - 20px) !important;
        overflow-y: auto !important;
        z-index: 2147483000 !important;
    }

    .klaro .cookie-notice .cn-body,
    .klaro .cookie-notice .cn-body p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .klaro .cookie-notice .cn-ok {
        display: flex !important;
        gap: 16px !important;
        align-items: stretch !important;
        justify-content: center !important;
    }

    .klaro .cookie-notice .cn-btn,
    .klaro .cookie-notice .cm-btn {
        flex: 1 1 calc(50% - 8px) !important;
        min-width: 135px !important;
        width: auto !important;
        margin-right: 12px !important;
        padding: 12px 12px !important;
        line-height: 1.25 !important;
        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .klaro .cookie-notice .cn-ok .cn-btn:last-child,
    .klaro .cookie-notice .cn-ok .cm-btn:last-child {
        margin-right: 0 !important;
    }

    .klaro .cookie-notice .cn-ok .cn-btn + .cn-btn,
    .klaro .cookie-notice .cn-ok .cm-btn + .cm-btn,
    .klaro .cookie-notice .cn-ok .cn-btn + .cm-btn,
    .klaro .cookie-notice .cn-ok .cm-btn + .cn-btn {
        margin-left: 16px !important;
    }
}

@media (max-width: 420px) {
    .klaro .cookie-notice .cn-btn,
    .klaro .cookie-notice .cm-btn {
        flex: 1 1 100% !important;
        min-width: 0 !important;
    }

    .klaro .cookie-notice .cn-ok .cn-btn + .cn-btn,
    .klaro .cookie-notice .cn-ok .cm-btn + .cm-btn,
    .klaro .cookie-notice .cn-ok .cn-btn + .cm-btn,
    .klaro .cookie-notice .cn-ok .cm-btn + .cn-btn {
        margin-left: 0 !important;
        margin-top: 10px !important;
    }
}

/* ================================================================
   KLARO MOBILE FIXES - NUR COOKIE EINSTELLUNGSSEITE (MODAL)
   ================================================================ */
@media (max-width: 767px) {
    .klaro .cookie-modal {
        z-index: 2147483001 !important;
    }

    .klaro .cookie-modal .cm-modal.cm-klaro {
        width: calc(100% - 16px) !important;
        max-width: none !important;
        max-height: calc(100dvh - 16px) !important;
        top: 8px !important;
        left: 8px !important;
        right: 8px !important;
        transform: none !important;
        margin: 0 !important;
        border-radius: 16px !important;
        overflow: auto !important;
    }

    .klaro .cookie-modal .cm-modal .cm-header,
    .klaro .cookie-modal .cm-modal .cm-body,
    .klaro .cookie-modal .cm-modal .cm-footer {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .klaro .cookie-modal .cm-modal .cm-header h1 {
        font-size: 1.7rem !important;
        line-height: 1.15 !important;
        padding-right: 28px !important;
    }

    .klaro .cookie-modal .cm-modal .cm-body {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .klaro .cookie-modal .cm-switch-container {
        padding: 10px 8px 10px 58px !important;
        min-height: 38px !important;
    }

    .klaro .cookie-modal .cm-modal .cm-footer-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .klaro .cookie-modal .cm-modal .cm-footer-buttons .cm-btn {
        width: 100% !important;
        margin-right: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }
}

/* Modern Stat Card - Liquid Glass Design */
.call-back.modern-glass {
    background: rgba(2, 13, 38, 0.9) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: none !important;
    border-top: 3px solid #d2a34d !important; /* Only Top Border */
    border-right: 3px solid #d2a34d !important; /* Only Right Border */
    border-radius: 0 20px 0 12px !important; /* Rounded Top-Right, Bottom-Left matches image */
    padding: 24px 28px 24px 22px !important; /* More space on the right */
    max-width: 320px !important; /* Increased width to prevent text cut-off */
    width: fit-content !important;
    box-shadow: 15px -15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    left: 0 !important; /* Flush with Left */
    bottom: 0 !important; /* Flush with Bottom */
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.call-back.modern-glass:hover {
    transform: scale(1.02);
    box-shadow: 20px -20px 50px rgba(0, 0, 0, 0.3);
}

.call-back.modern-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 163, 77, 0.15) 0%, transparent 70%);
    animation: liquid-flow 12s infinite alternate ease-in-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes liquid-flow {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    100% { transform: translate(10%, 10%) rotate(10deg); }
}

.call-back.modern-glass h3 {
    font-size: 46px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #d2a34d !important; /* Solid Gold Typography - No Shine */
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    line-height: 1 !important;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
    position: relative;
    z-index: 2;
}

.call-back.modern-glass span {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    padding-left: 14px !important;
    border-left: 2px solid #d2a34d;
    position: relative;
    z-index: 2;
    display: block !important;
}

@media (max-width: 767px) {
    .call-back.modern-glass {
        padding: 18px 15px !important;
        max-width: 220px !important;
        gap: 12px !important;
    }
    .call-back.modern-glass h3 {
        font-size: 34px !important;
    }
    .call-back.modern-glass span {
        font-size: 10px !important;
    }
}

/* Experience Stats Section */
.experience-stats-section {
    padding: 0 0 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.experience-stats-section .container {
    max-width: 1200px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(2, 13, 38, 0.05);
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    min-width: 320px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(210, 163, 77, 0.12);
    position: relative;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(2, 13, 38, 0.1);
    border-color: rgba(210, 163, 77, 0.35);
}

.stat-card .icon-holder {
    width: 80px;
    height: 80px;
    background: rgba(210, 163, 77, 0.1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d2a34d;
    font-size: 38px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.stat-card:hover .icon-holder {
    background: #d2a34d;
    color: #ffffff;
    transform: rotate(8deg) scale(1.05);
}

.stat-info .counter {
    font-size: 44px;
    font-weight: 800;
    color: #020d26;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-info p {
    font-size: 15px;
    font-weight: 700;
    color: #6c757d;
    margin: 6px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.2;
}

/* Mobile Optimierungen für Experience Sektion */
@media (max-width: 991px) {
    .stat-card {
        min-width: 45%;
    }
}

@media (max-width: 767px) {
    .experience-stats-section {
        padding: 0 0 60px 0;
    }
    .stats-grid {
        gap: 20px;
    }
    .stat-card {
        min-width: 100%;
        padding: 30px 25px;
        gap: 20px;
    }
    .stat-card .icon-holder {
        width: 65px;
        height: 65px;
        font-size: 28px;
        border-radius: 18px;
    }
    .stat-info .counter {
        font-size: 36px;
    }
    .stat-info p {
        font-size: 13px;
        letter-spacing: 0.8px;
    }
}