/*! Starke Bienen im Einsatz - Optimized CSS */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
}

:root {
    --primary-color: #ffd700; /* Bienen-Gelb */
    --secondary-color: #000000; /* Schwarz */
    --accent-color: #ffed4e; /* Helleres Gelb */
    --text-dark: #333333;
    --text-light: #333333; /* Much darker for WCAG AA compliance */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    
    /* ===== ERWEITERTE BIENEN-FARBPALETTE ===== */
    --cream-white: #fefcf5; /* Cremiges Weiß mit gelben Unterton */
    --warm-light: #faf8f1; /* Warmes Hellgrau */
    --honey-tint: #fdf9e8; /* Honig-getönter Hintergrund */
    --soft-yellow: #fff9e6; /* Sehr zartes Gelb */
    --warm-gray: #f5f3ed; /* Warmes Grau */
    --honey-border: #f0e6b8; /* Honig-getönte Borders */
    --warm-shadow: 0 4px 6px rgba(255, 215, 0, 0.08); /* Warmer Schatten */
    --warm-shadow-hover: 0 8px 15px rgba(255, 215, 0, 0.12); /* Warmer Hover-Schatten */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-display: swap;
    /* Verhindert anfängliche weiße Blitze */
    background-color: #1a1a1a;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #2d2d2d !important; /* Much darker for WCAG AA compliance */
    margin-bottom: 3rem;
    font-weight: 600 !important;
    text-shadow: none !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%,      /* Warmes dunkles Schwarz */
        rgba(44, 36, 22, 0.92) 50%,     /* Honig-braun getönt */
        rgba(26, 26, 26, 0.95) 100%     /* Warmes dunkles Schwarz */
    ) !important;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.15);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    /* Verhindert Navbar Layout Shift */
    min-height: 80px;
    contain: layout style;
}

/* ===== NAVBAR RATING WIDGET (CLEAN & SIMPLE) ===== */
.navbar-rating-simple {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.2) !important;
    border: 2px solid rgba(255, 215, 0, 0.6) !important;
    border-radius: 25px;
    transition: all 0.2s ease;
    cursor: pointer !important;
    user-select: none;
    position: relative;
    z-index: 9999;
}

.navbar-rating-simple:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}

.navbar-rating-simple:active {
    transform: translateY(0);
    background: rgba(255, 215, 0, 0.3);
}

.navbar-rating-simple .rating-stars {
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.navbar-rating-simple .rating-number {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Mobile responsive rating widget */
@media (max-width: 768px) {
    .navbar-rating-simple {
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }
    
    .navbar-rating-simple .rating-stars {
        font-size: 0.75rem;
    }
    
    .navbar-rating-simple .rating-number {
        font-size: 0.9rem;
    }
}

.rating-summary {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-rating-widget:hover .rating-summary {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 2px;
}

.rating-stars i {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-value {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.review-count {
    color: #e0e0e0;
    font-size: 0.7rem;
    font-weight: 500;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #28a745;
    font-size: 0.7rem;
    font-weight: 600;
}

.verified-badge i {
    font-size: 0.8rem;
}

/* Rating Tooltip */
.rating-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100;
    backdrop-filter: blur(10px);
    margin-top: 10px;
}

.navbar-rating-widget:hover .rating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rating-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.95);
}

.tooltip-content {
    color: white;
}

.platform-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.platform-mini:last-child {
    margin-bottom: 0;
}

.platform-mini i {
    color: var(--primary-color);
    width: 16px;
}

/* Mobile Rating Widget */
.navbar-rating-mobile {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 8px 12px;
    margin: 8px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.navbar-rating-mobile .mobile-stars {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.navbar-rating-mobile .mobile-rating {
    color: #e0e0e0;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Enhanced tooltip styling */
.tooltip-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    color: var(--primary-color);
}

/* ===== LOGO STYLES ===== */
.logo-main {
    height: 40px;
    width: auto;
    max-width: 40px;
    transition: all 0.3s ease;
    filter: brightness(1.1);
    object-fit: contain;
    border-radius: 4px;
}

.logo-main:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.logo-footer {
    height: 24px;
    width: auto;
    max-width: 24px;
    transition: all 0.3s ease;
    filter: brightness(1.1);
    object-fit: contain;
    border-radius: 3px;
    vertical-align: baseline;
}

.logo-footer:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 1px 4px rgba(255, 215, 0, 0.3);
}

.navbar-nav {
    list-style: none !important;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.navbar-nav .nav-item {
    list-style: none !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    /* Hintergrund sofort anzeigen - ZUERST Fallback dann Bild */
    background-color: #1a1a1a;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), 
        url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    /* Feste Höhe verhindert Layout Shift */
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Minimales Containment nur für Layout */
    contain: layout;
}

.hero-overlay {
    width: 100%;
    padding-top: 80px;
    /* Verhindert Layout Shift */
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* Desktop bleibt bei 80px, Mobile wird überschrieben */

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 
        3px 3px 0 rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: heroTitleFloat 3s ease-in-out infinite;
}

@keyframes heroTitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
    letter-spacing: -0.01em;
    animation: heroSubtitleSlide 2s ease-out 0.5s both;
}

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

.hero-features {
    margin-bottom: 1.5rem;
    animation: heroFeaturesSlide 2s ease-out 0.8s both;
}

@keyframes heroFeaturesSlide {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.hero-feature i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: featureIconPulse 2s ease-in-out infinite;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: heroTrustAppear 2s ease-out 1.2s both;
}

@keyframes heroTrustAppear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero-trust-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-trust-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: heroButtonsAppear 2s ease-out 1s both;
}

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

.hero-buttons .btn {
    min-width: 220px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

/* ===== HERO LOGO ===== */
.hero-logo-container {
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    /* Feste Dimensionen verhindern Layout Shift */
    width: 400px;
    height: 400px;
    max-width: 100%;
    filter: brightness(1.1) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.6s ease;
    /* Animation erst nach 2 Sekunden starten - genug Zeit zum Laden */
    animation: heroLogoFloat 6s ease-in-out infinite 2s;
    /* Verhindert Layout Shift vollständig */
    aspect-ratio: 1 / 1;
    object-fit: contain;
    /* Anfangsposition fixiert */
    transform: translateY(0px);
    /* LOGO SOFORT SICHTBAR */
    opacity: 1 !important;
    animation-fill-mode: both;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 15px 40px rgba(255, 215, 0, 0.4));
}

@keyframes heroLogoFloat {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}


.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    border: 3px solid var(--primary-color);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-light {
    border: 3px solid var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--warm-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--honey-border);
    text-align: center;
    /* Mobile Performance Optimierung */
    content-visibility: auto;
    contain-intrinsic-size: 350px 400px;
    contain: layout style;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--warm-shadow-hover);
    background: var(--soft-yellow);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card.featured::before {
    content: '★';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card h3 {
    color: #000000 !important; /* Pure black for maximum contrast */
    margin-bottom: 1rem;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.service-card p {
    color: #2d2d2d !important; /* Much darker text for WCAG AA compliance */
    margin-bottom: 1.5rem;
    font-weight: 600 !important;
    text-shadow: none !important;
}

.btn-outline-primary {
    border: 2px solid #8b6914 !important; /* Much darker gold for WCAG AA compliance */
    color: #704d0f !important; /* Very dark gold - 7:1 contrast ratio */
    background: transparent !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.btn-outline-primary:hover {
    background: #8b6914 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    border-color: #8b6914 !important;
    text-shadow: none !important;
}

.btn-outline-primary:focus {
    border-color: #704d0f !important;
    color: #704d0f !important;
    box-shadow: 0 0 0 0.2rem rgba(112, 77, 15, 0.25) !important;
}

.btn-outline-primary:visited {
    color: #704d0f !important;
    border-color: #8b6914 !important;
}

.btn-outline-primary:active {
    background: #704d0f !important;
    color: #ffffff !important;
    border-color: #704d0f !important;
}

/* ===== CUSTOMER REVIEWS SECTION (BIENEN-GRADIENT) ===== */
.bg-gradient-dark {
    background: linear-gradient(135deg, 
        #1a1a1a 0%,     /* Sehr dunkles Schwarz (Bienen-Farbe) */
        #2c2416 25%,    /* Dunkles Honig-Braun */
        #3d3520 50%,    /* Mittleres Honig-Braun */
        #2c2416 75%,    /* Dunkles Honig-Braun */
        #1a1a1a 100%    /* Sehr dunkles Schwarz */
    );
    position: relative;
    overflow: hidden;
    /* Dezenter goldener Schimmer */
    box-shadow: 
        inset 0 0 100px rgba(255, 215, 0, 0.05),
        0 0 30px rgba(255, 215, 0, 0.1);
}

.platform-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.platform-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-logo {
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

.platform-stat .stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.review-count {
    color: #e5e5e5; /* Lighter for better contrast on dark background */
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.platform-link {
    color: #b8860b; /* Darker gold for better contrast */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.platform-link:hover {
    color: #996f00; /* Even darker on hover */
    text-decoration: underline;
}

.overall-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #bdc3c7;
    font-weight: 500;
    font-size: 0.9rem;
}

.review-card.authentic {
    background: linear-gradient(145deg, var(--cream-white) 0%, var(--warm-light) 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    box-shadow: var(--warm-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card.authentic::before {
    content: '✓ ECHT';
    position: absolute;
    top: -10px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

.review-card.authentic:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.reviewer-details strong {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.review-date {
    font-size: 0.8rem;
    color: #555555; /* Slightly darker for better contrast */
    font-weight: 500;
}

.review-rating .stars {
    color: var(--primary-color);
    font-size: 1rem;
}

.review-content blockquote {
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #444444; /* Darker for better contrast */
    font-weight: 500;
    margin-top: 1rem;
}

.service-type i {
    color: var(--primary-color);
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: #444444; /* Darker for better contrast */
    font-weight: 500;
}

.verify-link {
    margin-left: auto;
    color: #0066cc; /* Darker blue for better contrast */
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.verify-link:hover {
    color: #004499; /* Even darker on hover */
    text-decoration: underline;
}

.reviews-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== ABOUT SECTION ===== */
.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image img {
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* ===== GALLERY SECTION ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--warm-shadow);
    border: 2px solid var(--honey-border);
    transition: all 0.3s ease;
    /* Mobile Performance Optimierung */
    content-visibility: auto;
    contain-intrinsic-size: 384px 256px;
    contain: layout style;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--warm-shadow-hover);
    border-color: var(--primary-color);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-info, .contact-form {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--warm-shadow);
    height: 100%;
    border: 1px solid var(--honey-border);
}

/* Specific enhancement for form privacy links */
.contact-form .text-decoration-none {
    color: #704d0f !important; /* Very dark gold for WCAG AA compliance */
    font-weight: 700 !important;
    text-shadow: none !important;
}

.contact-form .text-decoration-none:hover {
    color: #5a3c0c !important; /* Even darker on hover */
    text-decoration: underline !important;
    text-shadow: none !important;
}

/* Global text-decoration-none link fix */
a.text-decoration-none {
    color: #704d0f !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

a.text-decoration-none:hover,
a.text-decoration-none:focus {
    color: #5a3c0c !important;
    text-decoration: underline !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-form h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-check-label a {
    color: #704d0f !important; /* Very dark gold for WCAG AA compliance */
    font-weight: 700 !important;
    text-shadow: none !important;
}

.form-check-label a:hover {
    color: #5a3c0c !important; /* Even darker on hover */
    text-decoration: underline !important;
    text-shadow: none !important;
}

/* ===== MAP SECTION ===== */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.region-tags .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color) !important;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer text contrast fixes - Override Bootstrap's text-light */
.footer.bg-dark .text-light,
.footer .text-light,
.bg-dark .text-light {
    color: #f8f9fa !important; /* Much lighter for better contrast on dark bg */
}

.footer a.text-light,
.bg-dark a.text-light {
    color: #ffffff !important; /* Pure white for maximum contrast */
    font-weight: 500 !important;
    text-shadow: none !important;
}

.footer a.text-light:hover,
.footer a.text-light:focus,
.bg-dark a.text-light:hover,
.bg-dark a.text-light:focus {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

/* ===== FAQ SECTION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    padding: 1.25rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.accordion-body {
    background: var(--cream-white);
    padding: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-top: 1px solid var(--honey-border);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* ===== WHATSAPP BUTTON STYLING ===== */
.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: 3px solid #25d366;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0d5a4e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.service-card, .gallery-item, .contact-info, .contact-form {
    animation: fadeInUp 0.6s ease forwards;
}

/* Enhanced Breadcrumb Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-container {
        margin-top: 90px;
    }
    
    .enhanced-breadcrumb {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.5rem 1rem;
        gap: 0.25rem;
    }
    
    .breadcrumb-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
        /* Feste Navbar-Höhe auf Mobile */
        min-height: 70px;
    }
    
    .hero-overlay {
        padding-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .hero-logo {
        /* Mobile Logo-Größe fest definiert */
        width: 200px;
        height: 200px;
        /* Mobile SOFORT SICHTBAR - kein Flackern */
        opacity: 1 !important;
        /* Animation-Delay auf Mobile länger für bessere UX */
        animation: heroLogoFloat 6s ease-in-out infinite 1.5s;
    }
    
    .breadcrumb-container {
        margin-top: 75px;
        padding: 0.75rem 0;
    }
    
    .enhanced-breadcrumb {
        padding: 0.5rem;
        border-radius: 15px;
    }
    
    .breadcrumb-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .breadcrumb-link i {
        margin-right: 0.3rem;
        font-size: 0.7rem;
    }
    
}

/* ===== RESPONSIVE DESIGN ===== */
/* Basis-Responsive Regeln für Hero - detaillierte Regeln in responsive.css */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-main {
        height: 32px;
    }
    
    .logo-footer {
        height: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-overlay {
        padding-top: 120px;
    }
    
    .hero-logo-container {
        padding: 1.5rem;
        margin-top: 2rem;
        text-align: center;
    }
    
    .hero-logo {
        max-height: 250px;
    }
    
    .hero-features {
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .hero-feature {
        justify-content: flex-start;
        margin-bottom: 0.6rem;
        font-size: 1rem;
    }
    
    .hero-trust {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-trust-text {
        font-size: 0.9rem;
    }
    
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .contact-info, .contact-form {
        margin-bottom: 2rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    /* Reviews Mobile */
    .platform-stat {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .overall-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .review-card.authentic {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-content blockquote {
        font-size: 0.9rem;
    }
    
    .reviews-cta {
        padding: 1.5rem;
    }
    
    /* Rating Widget Mobile */
    .navbar-rating-mobile {
        display: block !important;
        margin: 5px 10px;
        padding: 6px 8px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.25rem 0;
    }
    
    .breadcrumb-container {
        margin-top: 65px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-main {
        height: 28px;
    }
    
    .logo-footer {
        height: 18px;
    }
    
    .hero-overlay {
        padding-top: 140px;
    }
    
    .hero-logo-container {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .hero-logo {
        max-height: 200px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .accordion-button {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING STATES ===== */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== ACCESSIBILITY ===== */
.btn:focus, .form-control:focus, .form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== ENHANCED INTERACTIONS ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button enhanced effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:active {
    transform: scale(0.98);
}

/* Trust element enhanced styling */
.hero-trust {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hero-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.hero-trust:hover::before {
    left: 100%;
}


/* Performance optimized animations */
.hero-title,
.hero-subtitle,
.hero-features,
.hero-trust,
.hero-buttons {
    will-change: transform, opacity;
}

/* ===== MOBILE PERFORMANCE OPTIMIERUNGEN ===== */
/* Reduziere Animationen auf mobilen Geräten für bessere Performance */
@media (max-width: 768px) {
    .hero-title,
    .hero-subtitle,
    .hero-features,
    .hero-trust,
    .hero-buttons {
        animation: none !important;
        will-change: auto !important;
    }
    
    .service-card:hover,
    .gallery-item:hover {
        transform: none !important;
    }
    
    /* Reduziere Transitions auf Mobile */
    * {
        transition: none !important;
    }
    
    .btn:hover {
        transition: background-color 0.1s ease !important;
    }
}

/* Smooth scroll behavior enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
    }
}

/* ===== PROCESS STEPS STYLING ===== */
.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--primary-color), rgba(255, 215, 0, 0.3));
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    background: var(--cream-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--warm-shadow);
    border: 1px solid var(--honey-border);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--warm-shadow-hover);
    background: var(--soft-yellow);
}

.step-content h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #444444; /* Darker for better contrast */
    margin-bottom: 0;
    line-height: 1.5;
}

/* Service Detail Items */
.service-detail-item {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--warm-shadow);
    border: 1px solid var(--honey-border);
    transition: all 0.3s ease;
}

.service-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--warm-shadow-hover);
    background: var(--soft-yellow);
}

.service-detail-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-item ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Enhanced Breadcrumb Navigation */
.breadcrumb-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 237, 78, 0.15) 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding: 1rem 0;
    margin-top: 80px;
    backdrop-filter: blur(5px);
}

/* Desktop Full HD adjustments */
@media (min-width: 1200px) {
    .breadcrumb-container {
        margin-top: 100px;
        padding: 1.5rem 0;
    }
}

@media (min-width: 1400px) {
    .breadcrumb-container {
        margin-top: 110px;
        padding: 2rem 0;
    }
}

.enhanced-breadcrumb {
    background: var(--cream-white);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--honey-border);
    box-shadow: var(--warm-shadow);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #b8860b, #d4af37); /* Darker gradient for better contrast */
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700; /* Bolder font weight */
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.breadcrumb-link:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    border-color: var(--secondary-color);
}

.breadcrumb-link.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    cursor: default;
    border-color: var(--primary-color);
}

.breadcrumb-link.active:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.breadcrumb-link i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}


/* Service Sidebar Styling */
.service-sidebar .card {
    background: var(--cream-white);
    border: 1px solid var(--honey-border);
    border-radius: 15px;
    box-shadow: var(--warm-shadow);
    transition: all 0.3s ease;
}

.service-sidebar .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--warm-shadow-hover);
    background: var(--soft-yellow);
}

.service-sidebar .card-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-sidebar .card-text {
    color: #444444; /* Darker for better contrast */
    line-height: 1.5;
}

/* ===== WARM BACKGROUND CLASSES ===== */
.bg-warm-light {
    background-color: var(--warm-light) !important;
}

.bg-honey-tint {
    background-color: var(--honey-tint) !important;
}

.bg-soft-yellow {
    background-color: var(--soft-yellow) !important;
}

.bg-warm-gray {
    background-color: var(--warm-gray) !important;
}

/* About Section warm styling */
.about-features .feature-item i {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.about-image img {
    box-shadow: var(--warm-shadow);
    transition: transform 0.3s ease;
    border: 2px solid var(--honey-border);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--warm-shadow-hover);
}

/* ===== FORMULAR VALIDATION STYLES ===== */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    background-image: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4M5.8 8.4l.4-.4.4.4M8.4 5.8l-.4.4.4.4M3.6 5.8l.4.4-.4.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    background-image: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Loading-Zustand für Buttons */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Formular Transitions */
.form-control,
.form-select {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Success Message Styles */
.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #155724;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

/* Improved form spacing */
.contact-form .form-control,
.contact-form .form-select {
    margin-bottom: 0.5rem;
}

.contact-form .form-check {
    margin: 1rem 0;
}

/* Honeypot hidden field styles */
input[name="bot-field"] {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    visibility: hidden !important;
}

/* ===== ICON IMPROVEMENTS ===== */
/* Stelle sicher, dass alle verwendeten Icons korrekt definiert sind */
.fa-check-circle::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', monospace;
    font-weight: 900;
}

/* ===== ACCESSIBILITY CONTRAST FIXES ===== */
/* WCAG AA Compliance - High priority contrast fixes */

/* Service cards container text fixes */
.service-card,
.service-card > *,
.service-card p,
.service-card span,
.service-card div {
    color: #2d2d2d !important;
    text-shadow: none !important;
}

/* Button outline primary - maximum contrast */
a.btn.btn-outline-primary,
.btn.btn-outline-primary,
button.btn-outline-primary {
    color: #5a3c0c !important; /* Dark brown for maximum contrast */
    border-color: #5a3c0c !important;
    background: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    text-decoration: none !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #ffffff !important;
    background: #5a3c0c !important;
    border-color: #5a3c0c !important;
}

/* Form links - datenschutz and privacy links */
.contact-form a,
.contact-form .text-decoration-none,
a[href*="datenschutz"] {
    color: #5a3c0c !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

/* Service card headings */
.service-card h3,
.service-card h4,
.service-card h2 {
    color: #000000 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

/* Contact form text */
.contact-form,
.contact-form p,
.contact-form label,
.contact-form .form-check-label {
    color: #2d2d2d !important;
    text-shadow: none !important;
}

/* Service card background - ensure white background for maximum contrast */
.service-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
}

/* Override any inherited light text colors */
.service-card *:not(.btn):not(.service-icon):not(.service-icon *) {
    color: #2d2d2d !important;
}

/* Button text inside service cards */
.service-card .btn-outline-primary {
    color: #5a3c0c !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 2px solid #5a3c0c !important;
}

/* Specific fix for the footer link mentioned in error */
footer.footer.bg-dark a[href="/datenschutz"],
footer.bg-dark .text-light.me-3,
.footer a[href*="datenschutz"] {
    color: #ffffff !important; /* Pure white on dark background */
    font-weight: 600 !important;
    text-shadow: none !important;
}

footer.footer.bg-dark a[href="/datenschutz"]:hover,
.footer a[href*="datenschutz"]:hover {
    color: #ffd700 !important; /* Gold on hover for visibility */
    text-decoration: underline !important;
}

/* Global override for all text-light in dark contexts */
.bg-dark .text-light,
.footer.bg-dark .text-light,
footer.bg-dark .text-light {
    color: #ffffff !important;
    font-weight: 500 !important;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .hero-section, .footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}