/* Modern CSS for S&K Gebäudereinigung GmbH - 2025 */

:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --success: #10b981;
    --white: #ffffff;
    --light: #f8fafc;
    --dark: #0f172a;
    --border: #e2e8f0;
    --transition: all 0.3s ease;
    --section-spacing: 8rem;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --primary-color: #00A7C4;
    --primary-dark: #008CA3;
    --primary-light: #33B8D1;
    --secondary-color: #004A57;
    --accent-color: #E6F7FA;
    --text-dark: #1A1A1A;
    --text-muted: #6C757D;
    --border: #DEE2E6;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    color: white;
    z-index: 1000;
    transition: all 0.3s ease;
}
  
.header.scrolled {
    background: white;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    transition: all 0.3s ease;
    background: transparent !important;
    padding: 2rem 1rem;
    min-height: 110px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem;
    min-height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced Logo Modern Styling */
.logo-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.logo-circle {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2c5f6f 0%, #00A7C4 50%, #33B8D1 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 167, 196, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #2c5f6f, #00A7C4, #33B8D1, #2c5f6f);
    animation: logoRotate 8s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    margin-bottom: -2px;
}

.logo-s {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 18px;
}

.logo-ampersand {
    color: #ffffff;
    font-size: 14px;
    margin: 0 1px;
    opacity: 0.9;
}

.logo-k {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 18px;
}

.logo-company {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -4px;
}

.logo-text-full {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    line-height: 1;
}

.navbar-brand:hover .logo-circle {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 167, 196, 0.4);
}

.navbar-brand:hover .logo-main-text {
    color: var(--primary-color);
    transform: translateX(2px);
}

.navbar-brand:hover .logo-circle::before {
    animation-duration: 2s;
    opacity: 0.5;
}

/* Responsive Logo Adjustments */
@media (max-width: 991px) {
    .logo-modern {
        gap: 12px;
    }
    
    .logo-circle {
        width: 48px;
        height: 48px;
    }
    
    .logo-brand {
        font-size: 16px;
    }
    
    .logo-s, .logo-k {
        font-size: 16px;
    }
    
    .logo-ampersand {
        font-size: 12px;
    }
    
    .logo-company {
        font-size: 7px;
    }
    
    .logo-main-text {
        font-size: 16px;
    }
    
    /* Blende Logotext auf Tablets aus für mehr Platz */
    .logo-text {
        opacity: 0.8;
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .logo-modern {
        gap: 10px;
    }
    
    .logo-circle {
        width: 42px;
        height: 42px;
    }
    
    .logo-brand {
        font-size: 14px;
    }
    
    .logo-s, .logo-k {
        font-size: 14px;
    }
    
    .logo-ampersand {
        font-size: 11px;
    }
    
    .logo-company {
        font-size: 6px;
    }
    
    .logo-main-text {
        font-size: 14px;
    }
    
    /* Mobile: Logotext komplett ausblenden */
    .logo-text {
        display: none !important;
    }
    
    /* Logo-Image anpassen für mobile ohne Text */
    .logo-image {
        height: 45px !important;
    }
    
    .navbar.scrolled .logo-image {
        height: 40px !important;
    }
    
    /* Mobile Navbar kompakter machen */
    .navbar {
        padding: 0.6rem 1rem;
        min-height: 50px;
    }
    
    .navbar.scrolled {
        padding: 0.4rem 1rem;
        min-height: 45px;
    }
    
    /* Mobile Hamburger Menu kleiner machen */
    .navbar-toggler {
        width: 46px;
        height: 38px;
        padding: 0.4rem 0.5rem;
    }
    
    .navbar.scrolled .navbar-toggler {
        width: 40px;
        height: 32px;
        padding: 0.3rem 0.4rem;
    }
    
    .navbar-toggler-icon {
        width: 1.4em;
        height: 1.4em;
    }
    
    .navbar.scrolled .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
}

@media (max-width: 576px) {
    .logo-text-full {
        display: none;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-brand {
        font-size: 13px;
    }
    
    .logo-s, .logo-k {
        font-size: 13px;
    }
    
    /* Kleine Mobile: Nur Logo-Bild, kein Text */
    .logo-text {
        display: none !important;
    }
    
    .logo-image {
        height: 45px !important;
    }
    
    .navbar.scrolled .logo-image {
        height: 40px !important;
    }
    
    /* Navbar padding reduzieren für mehr Platz */
    .navbar {
        padding: 0.8rem 1rem;
        min-height: 60px;
    }
    
    /* Sehr kleine Mobile: Hamburger extra klein */
    .navbar-toggler {
        width: 42px;
        height: 34px;
        padding: 0.3rem 0.4rem;
        border-width: 1px;
    }
    
    .navbar.scrolled .navbar-toggler {
        width: 38px;
        height: 30px;
        padding: 0.25rem 0.35rem;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
    
    .navbar.scrolled .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }
}

.navbar-brand {
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    height: 60px;
    display: flex;
    align-items: center;
}

.navbar.scrolled .navbar-brand {
    height: 55px;
}

.navbar-brand:hover .logo-main {
    color: var(--primary-color);
}

.navbar-brand:hover .logo-sub {
    opacity: 1;
    transform: translateX(2px);
}

.logo-image {
    height: 60px !important;
    transition: all 0.3s ease;
    object-fit: contain;
    max-width: 100%;
}

.navbar.scrolled .logo-image {
    height: 45px !important;
}

.navbar.scrolled .logo-text {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

/* Navigation Links */
.nav-link {
    color: var(--dark) !important;
    position: relative;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.85;
    font-weight: 500;
    font-size: 1rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: transform 0.3s ease;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
}

.nav-link:hover::after {
    transform: scaleX(0.8);
}

/* Mobile Hamburger Menu Styling */
.navbar-toggler {
    padding: 0.5rem 0.6rem;
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 167, 196, 0.1);
    width: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 167, 196, 0.25);
    border-color: var(--primary-color);
}

.navbar-toggler:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Mobile Menu Backdrop - NUR für Mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 70px 15px 15px;
        overflow-y: auto;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-collapse.collapsing {
        left: 0;
        transition: left 0.3s ease;
    }
    
    /* Sicherstellen dass Dropdowns genug Platz haben */
    .navbar-nav {
        min-height: auto !important;
        height: auto !important;
    }
}

/* Desktop Navigation - Normal sichtbar */
@media (min-width: 992px) {
    .navbar-collapse {
        position: static !important;
        display: flex !important;
        flex-basis: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow-y: visible !important;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .navbar-nav .nav-link {
        background: transparent !important;
        border: none !important;
        margin: 0 !important;
        padding: 0.8rem 1.2rem !important;
        border-radius: 0 !important;
        gap: 0 !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    .navbar-nav .nav-link::before {
        content: '';
        width: 4px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 50%;
        transition: all 0.2s ease;
        opacity: 0;
    }
    
    .navbar-nav .nav-link:hover::before {
        opacity: 1;
        background: white;
    }

    /* SEHR SICHTBARER Desktop Dropdown Indikator für Leistungen */
    .navbar .nav-item.dropdown .dropdown-toggle {
        position: relative !important;
        padding-right: 3rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    /* Einfaches Dreieck nach unten NUR für Haupt-Leistungen Link */
    .navbar .nav-item.dropdown > .nav-link::after,
    .navbar .nav-item.dropdown > .dropdown-toggle::after,
    .navbar .nav-item.dropdown > .dropdown-hover-toggle::after,
    .navbar .nav-item.dropdown > a[href*="services"]::after {
        content: ' ▼' !important;
        font-family: inherit !important;
        position: relative !important;
        border: none !important;
        font-size: 10px !important;
        margin-left: 4px !important;
        display: inline !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border-radius: 0 !important;
        transform: none !important;
        transition: none !important;
        opacity: 1 !important;
        right: auto !important;
        top: auto !important;
        line-height: inherit !important;
        vertical-align: middle !important;
        position: relative !important;
        top: -1px !important;
    }

    /* Hover-Effekt entfernen - NUR für Haupt-Leistungen Link */
    .navbar .nav-item.dropdown > .nav-link:hover::after,
    .navbar .nav-item.dropdown > .dropdown-toggle:hover::after,
    .navbar .nav-item.dropdown > .dropdown-hover-toggle:hover::after,
    .navbar .nav-item.dropdown > a[href*="services"]:hover::after {
        content: ' ▼' !important;
        transform: none !important;
        background: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }

    /* Dropdown offen - gleich bleiben - NUR für Haupt-Leistungen Link */
    .navbar .nav-item.dropdown:hover > .nav-link::after,
    .navbar .nav-item.dropdown:hover > .dropdown-toggle::after,
    .navbar .nav-item.dropdown:hover > .dropdown-hover-toggle::after,
    .navbar .nav-item.dropdown:hover > a[href*="services"]::after {
        content: ' ▼' !important;
        color: inherit !important;
        background: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* Alternative mit Text-Indikator */
    .navbar .nav-item.dropdown .dropdown-toggle::before {
        content: '' !important;
        display: none !important;
    }
}

/* Mobile Navigation Items */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 10px 0;
        gap: 4px;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px;
        border-radius: 8px;
        background: rgba(248, 249, 250, 0.8);
        margin-bottom: 4px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 15px;
        color: var(--text-dark) !important;
        border: 1px solid rgba(230, 230, 230, 0.6);
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--primary-color);
        color: white !important;
        border-color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(0, 167, 196, 0.3);
    }
    
    /* Spezielle Regel für Dropdown-Links - behält sichtbaren Text */
    .navbar-nav .nav-item.dropdown .nav-link:hover,
    .navbar-nav .nav-item.dropdown .dropdown-toggle:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
    
    /* Beim Anklicken/Öffnen des Dropdowns */
    .navbar-nav .nav-item.dropdown.show .nav-link,
    .navbar-nav .nav-item.dropdown.show .dropdown-toggle {
        background: var(--primary-color) !important;
        color: white !important;
    }
    
    /* Dreieck auch weiß machen beim Hover und Öffnen */
    .navbar-nav .nav-item.dropdown .nav-link:hover::after,
    .navbar-nav .nav-item.dropdown .dropdown-toggle:hover::after,
    .navbar-nav .nav-item.dropdown.show .nav-link::after,
    .navbar-nav .nav-item.dropdown.show .dropdown-toggle::after {
        color: white !important;
    }
    
    
    .navbar-nav .nav-link:hover::before {
        opacity: 1;
        background: white;
    }
    
    /* Mobile Dropdown Styles - Leistungen funktional */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        background: rgba(240, 242, 245, 0.95) !important;
        border: none !important;
        border-radius: 8px !important;
        margin: 4px 0 0 16px !important;
        padding: 0 !important;
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
    }
    
    .navbar .dropdown.show .dropdown-menu {
        display: block !important;
        max-height: 1000px !important;
        height: auto !important;
        padding: 20px 0 !important;
        overflow-y: visible !important;
        margin-bottom: 20px !important;
        transition: none !important;
    }
    
    .navbar .dropdown-item {
        padding: 8px 16px !important;
        margin: 1px 6px !important;
        border-radius: 6px !important;
        background: transparent !important;
        transition: all 0.2s ease !important;
        font-size: 13px !important;
        color: var(--text-dark) !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .navbar .dropdown-item:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
    
    .navbar .dropdown-item i {
        font-size: 12px !important;
        width: 16px !important;
        color: var(--primary-color) !important;
        transition: all 0.2s ease !important;
    }
    
    .navbar .dropdown-item:hover i {
        color: white !important;
    }
    
    /* Mobile Dropdown Toggle - MIT DREIECK */
    .navbar .dropdown-toggle::after,
    .navbar .dropdown-hover-toggle::after,
    .navbar .nav-item.dropdown .nav-link::after {
        content: ' ▼' !important;
        font-family: inherit !important;
        position: absolute !important;
        border: none !important;
        font-size: 12px !important;
        color: #333 !important;
        display: inline !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border-radius: 0 !important;
        transform: translateY(-50%) !important;
        transition: none !important;
        opacity: 1 !important;
        right: 218px !important;
        top: 50% !important;
        line-height: inherit !important;
        vertical-align: middle !important;
        z-index: 10 !important;
    }


    /* Keine Animation beim Öffnen - bleibt immer ▼ */
    .navbar .dropdown.show .dropdown-toggle::after,
    .navbar .dropdown.show .dropdown-hover-toggle::after,
    .navbar .dropdown.show .nav-item.dropdown .nav-link::after {
        content: ' ▼' !important;
        transform: translateY(-50%) !important;
    }

    /* Menu Overlay für besseren Kontrast */
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
        z-index: -1;
    }
    
    /* Close Button ohne Animation */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
    }
    
    /* MOBILE OVERRIDE - Desktop Dreieck-Regeln komplett deaktivieren */
    .navbar .nav-item.dropdown > .nav-link:not(.dropdown-toggle)::after,
    .navbar .nav-item.dropdown > a[href*="services"]:not(.dropdown-toggle)::after {
        content: none !important;
        display: none !important;
        margin-left: 0 !important;
        position: static !important;
    }
}

/* Dropdown Styles */
.navbar .dropdown-toggle {
    position: relative;
    padding-right: 2.5rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar .dropdown-toggle::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 53%;
    transform: translateY(-50%);
    border: none !important;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    background: rgba(0, 167, 196, 0.08);
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .dropdown-toggle:hover::after {
    opacity: 1;
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

/* Auto-hover dropdown functionality - ENHANCED */
.navbar .dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg) !important;
    color: #fff !important;
    opacity: 1 !important;
}

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

/* STRONG Override Bootstrap dropdown behavior */
.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(230, 230, 230, 0.6) !important;
    border-radius: 16px !important;
    padding: 20px 0 !important;
    margin-top: 0px !important;
    min-width: 320px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1000 !important;
    display: none !important;
}

/* Force show dropdown on hover - NO BOOTSTRAP INTERFERENCE */
.navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Disable any Bootstrap JS behavior */
.navbar .dropdown-menu[data-bs-popper] {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 0 !important;
}

/* Create invisible bridge to prevent hover gaps - STRONGER */
.navbar .dropdown::before {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: 12px !important;
    background: transparent !important;
    z-index: 999 !important;
}

/* Ensure dropdown container has proper hover area - ENHANCED */
.navbar .dropdown {
    position: relative !important;
}

/* Override any Bootstrap dropdown positioning */
.navbar .dropdown .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    color: white !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Disable Bootstrap dropdown toggle click behavior */
.navbar .dropdown-toggle {
    pointer-events: auto;
}

.navbar .dropdown-toggle::after {
    pointer-events: none;
}

.navbar .dropdown-item {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-radius: 12px;
    margin: 3px 12px;
    position: relative;
    gap: 14px;
}

.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover::before {
    opacity: 1;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.08), rgba(0, 167, 196, 0.05));
    color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 167, 196, 0.1);
}

/* Dropdown item icons */
.navbar .dropdown-item i {
    font-size: 16px;
    color: rgba(0, 167, 196, 0.6);
    width: 20px;
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover i {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

/* Enhanced dropdown animations */
@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown:hover .dropdown-menu {
    animation: dropdownSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dropdown separator */
.navbar .dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 196, 0.2), transparent);
    margin: 12px 20px;
    border: none;
}

/* Hero Section */
.hero-enterprise {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-enterprise::before {
  content: '';
  position: absolute;
  width: 75vw;
  height: 93vw;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  top: -30vw;
  right: -30vw;
  z-index: 0;
  opacity: 0.05;
}

.hero-content {
  margin-left: 10%;
  position: relative;
  z-index: 2;
}

.hero-main-content {
  margin-top: 100px;
  padding: 40px 0;
  text-align: left;
}

.hero-content h1 {
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 30px;
  font-size: 3.1rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content h1 .text-primary {
  color: var(--primary-color) !important;
}

.hero-content .lead {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 90%;
  font-weight: 400;
}

/* Hero Search Card - Less Dominant */
.hero-search-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 230, 230, 0.8);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 50;
  overflow: visible;
}

.hero-search-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.search-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.search-tab {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid rgba(230, 230, 230, 0.8);
  background: rgba(248, 249, 250, 0.8);
  color: var(--text-muted);
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-tab.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 167, 196, 0.3);
}

.search-tab:hover:not(.active) {
  background: rgba(233, 236, 239, 0.9);
  border-color: #dee2e6;
}

.search-row {
  margin-bottom: 14px;
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 12px;
  z-index: 3;
  color: var(--primary-color);
  font-size: 13px;
  opacity: 0.8;
}

.search-field .form-control,
.search-field .form-select {
  padding-left: 36px;
  border: 1px solid rgba(230, 230, 230, 0.8);
  border-radius: 8px;
  font-size: 13px;
  height: 38px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.search-field .form-control:focus,
.search-field .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 167, 196, 0.08);
  background: #fff;
}

.hero-cta-button {
  width: 100%;
  padding: 10px 18px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 167, 196, 0.3);
}

.hero-cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 167, 196, 0.4);
}

/* Hero Stats - Beautiful Design */
.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  justify-content: flex-start;
}

.stat-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  min-width: 140px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 167, 196, 0.15);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Icon für Stat Cards */
.stat-card::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.stat-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Hero Images */
.hero-image-grid {
  position: relative;
  height: 500px;
}

.hero-image-container {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.hero-image-container.main {
  width: 60%;
  height: 70%;
  top: 0;
  right: 0;
  z-index: 3;
}

.hero-image-container.secondary {
  width: 45%;
  height: 55%;
  bottom: 20%;
  right: 40%;
  z-index: 2;
}

.hero-image-container.tertiary {
  width: 35%;
  height: 45%;
  bottom: 0;
  right: 15%;
  z-index: 1;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.hero-image-container:hover {
  transform: scale(1.03) rotate(1deg);
  z-index: 4;
}

.hero-image-container:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 167, 196, 0.1), rgba(0, 140, 163, 0.2));
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-image-container:hover .image-overlay {
  opacity: 1;
}

.hero-quality-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-content i {
  color: var(--primary-color);
  font-size: 18px;
}

.badge-content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1ecf4 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 40%;
    height: 160%;
    background: linear-gradient(-45deg, rgba(0, 167, 196, 0.04), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    margin-top: 50px;
    /* CSS Grid entfernt für Bootstrap Grid Layout */
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(230, 230, 230, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: #fff;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 15px;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Modern Service Link Button */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 167, 196, 0.3);
  border: 2px solid transparent;
}

.service-link::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.6s ease;
}

.service-link:hover::before {
  left: 100%;
}

.service-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 167, 196, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

.service-link i {
  font-size: 12px;
  transition: all 0.3s ease;
  padding: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-link:hover i {
  transform: translateX(4px) rotate(45deg);
  background: rgba(255, 255, 255, 0.25);
}

/* Micro Bounce Animation */
.micro-bounce {
  animation: microBounce 2s infinite ease-in-out;
}

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

.service-link:hover .micro-bounce {
  animation: none;
}

/* Service Card Layout Enhancement */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(230, 230, 230, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.98);
}

/* Service Icon Wrapper */
.service-icon-wrapper {
  margin-bottom: 24px;
  position: relative;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 167, 196, 0.1), rgba(0, 167, 196, 0.05));
  border: 2px solid rgba(0, 167, 196, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.service-card:hover .service-icon::before {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.service-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon i {
  color: white;
  transform: scale(1.1);
}

/* Service Content */
.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.service-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li {
  transform: translateX(4px);
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 12px;
  width: 16px;
  height: 16px;
  background: rgba(0, 167, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* About Us Modern Section */
.about-us-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.about-us-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Modern Section Headers */
.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.25);
    position: relative;
}

.section-badge-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
}

.section-title-modern {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.3;
}

.section-subtitle-modern {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 80px;
}

/* Vision Modern Section */
.vision-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.vision-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vision-modern::after {
    display: none;
}

/* Contact Enterprise Section */
.contact-enterprise {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1ecf4 100%);
    position: relative;
    overflow: hidden;
}

.contact-enterprise::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-enterprise::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 40%;
    height: 160%;
    background: linear-gradient(-45deg, rgba(0, 167, 196, 0.04), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section & Container Utilities */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.section .container-fluid {
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 5vw, 5rem);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

/* Animation System 2025 */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-on-scroll.animate-fade-up {
        transform: translateY(30px);
    }

    .animate-on-scroll.animate-fade-left {
        transform: translateX(-30px);
    }

    .animate-on-scroll.animate-fade-right {
        transform: translateX(30px);
    }

    .animate-on-scroll.animate-scale {
        transform: scale(0.95);
    }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }

    .hover-lift {
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .hover-scale {
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .morph-on-hover {
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 16px;
    }

    .morph-on-hover:hover {
        border-radius: 24px;
        transform: scale(1.02);
    }

    .badge-slide-in {
        transform: translateX(-50px) scale(0.8);
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .badge-slide-in.is-visible {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .animate-stagger .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
    .animate-stagger .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
    .animate-stagger .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
    .animate-stagger .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
    .animate-stagger .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
    .animate-stagger .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }
}

/* Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .hover-lift,
    .hover-scale,
    .badge-slide-in {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        padding: 1rem;
        min-height: 70px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 48px !important;
    }
    
    .hero-main-content {
        margin-top: 70px;
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-section {
        margin-top: 70px;
    }
    
    .hero-content {
        margin-left: auto;
    }
    
    .hero-content .lead {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .services-grid {
        /* Entferne CSS Grid Eigenschaften für Bootstrap Grid */
    }
    
    .about-us-modern {
        padding: 80px 0;
    }
    
    .section-title-modern {
        font-size: 2.4rem;
    }
    
    .story-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-gallery-modern {
        height: 280px;
    }
    
    .stats-modern {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        min-height: 70px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 40px !important;
    }
    
    .hero-main-content {
        margin-top: 60px;
        padding: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content .lead {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-image-grid {
        height: 400px;
    }
    
    .section .container-fluid {
        padding-left: clamp(1rem, 3vw, 3rem);
        padding-right: clamp(1rem, 3vw, 3rem);
    }
    
    .services-grid {
        /* Entferne CSS Grid Eigenschaften für Bootstrap Grid */
    }
    
    .service-card {
        padding: 25px;
    }
    
    .about-us-modern {
        padding: 60px 0;
    }
    
    .section-subtitle-modern {
        margin-bottom: 60px;
    }
    
    .story-card {
        padding: 24px;
    }
    
    .story-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
    
    .story-icon i {
        font-size: 20px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .image-gallery-modern {
        height: 240px;
        margin-bottom: 20px;
    }
    
    .main-image,
    .secondary-image {
        border-radius: 16px;
    }
    
    .quality-promise-modern {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .services-grid {
        /* Entferne CSS Grid Eigenschaften für Bootstrap Grid */
    }
    
    .section-badge-modern {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-image-grid {
        height: 300px;
    }
    
    .hero-search-card {
        padding: 16px;
        margin-bottom: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-modern {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-promise {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .story-content h3 {
        font-size: 20px;
    }
    
    .image-gallery-modern {
        height: 200px;
    }
    
    /* Kleine Mobile: Nur Logo-Bild, kein Text */
    .logo-text {
        display: none !important;
    }
    
    .logo-image {
        height: 40px !important;
    }
    
    .navbar.scrolled .logo-image {
        height: 35px !important;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
        min-height: 65px;
    }
    
    .navbar.scrolled {
        padding: 0.5rem 1rem;
        min-height: 60px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px 10px;
        margin-left: 10px;
    }
    
    .navbar.scrolled .navbar-toggler {
        padding: 6px 8px;
    }
    
    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }
    
    .navbar.scrolled .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
}

/* Hero Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Buttons */
.cta-button {
    display: inline-flex;
  align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--white);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Story Container */
.story-container {
    position: relative;
    z-index: 2;
}

/* Main Story Card */
.story-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.story-icon i {
    font-size: 24px;
    color: white;
}

.story-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-item {
    background: white;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
  transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h5 {
    font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* Visual Showcase */
.visual-showcase {
    position: relative;
    height: 100%;
  display: flex;
  flex-direction: column;
    gap: 30px;
}

/* Modern Image Gallery */
.image-gallery-modern {
  position: relative;
    height: 320px;
    margin-bottom: 30px;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
    width: 75%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
    transition: all 0.4s ease;
}

.main-image:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-badge i {
    color: var(--success);
    font-size: 14px;
}

.image-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.secondary-image {
  position: absolute;
  bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: all 0.4s ease;
}

.secondary-image:hover {
    transform: scale(1.02) rotate(1deg);
    z-index: 3;
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 167, 196, 0.95);
  backdrop-filter: blur(10px);
    color: white;
  border-radius: 12px;
    padding: 12px 16px;
  text-align: center;
}

.badge-number {
  display: block;
    font-size: 18px;
  font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    opacity: 0.9;
}

/* Modern Stats */
.stats-modern {
  display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card-modern {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(230, 230, 230, 0.6);
  transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-card-modern.primary:hover {
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.3);
}

.stat-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stat-header i {
    font-size: 18px;
    color: var(--primary-color);
}

.stat-card-modern.primary .stat-header i {
    color: white;
}

.stat-title {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.stat-card-modern.primary .stat-title {
    color: rgba(255, 255, 255, 0.9);
}

.stat-card-modern.primary .fa-certificate {
    color: white !important;
}
.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-card-modern.primary .stat-number {
    color: white !important;
}

.activecard {
    color: white !important;
}
/* Quality Promise */
.quality-promise-modern {
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.05), rgba(0, 167, 196, 0.02));
    border: 1px solid rgba(0, 167, 196, 0.15);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quality-promise-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 167, 196, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.promise-content {
    position: relative;
    z-index: 2;
}

.promise-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.promise-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-promise {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.btn-promise:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.4);
    color: white;
    text-decoration: none;
}

.btn-promise i {
    font-size: 14px;
}

/* Vision Content Wrapper */
.vision-content-wrapper {
  position: relative;
    z-index: 2;
}

/* Mission Card */
.mission-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
    left: 0;
  right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.mission-icon i {
    font-size: 24px;
    color: white;
}

.mission-meta h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.mission-year {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(0, 167, 196, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Modern Principles */
.principles-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.principle-item {
    background: white;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
}

.principle-item::before {
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.principle-item:hover::before {
    opacity: 1;
}

.principle-item.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.principle-item.featured .principle-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.principle-item.featured .principle-number {
    color: rgba(255, 255, 255, 0.8);
}

.principle-item.featured h5,
.principle-item.featured p {
    color: white;
}

.principle-visual {
  display: flex;
    flex-direction: column;
  align-items: center;
    gap: 12px;
    min-width: 60px;
}

.principle-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
    transition: all 0.3s ease;
}

.principle-item:hover .principle-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1);
}

.principle-icon-wrapper i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.principle-item:hover .principle-icon-wrapper i {
    color: white;
}

.principle-number {
    font-size: 12px;
    font-weight: 700;
  color: var(--primary-color);
    opacity: 0.6;
}

.principle-text h5 {
    font-size: 16px;
    font-weight: 600;
  color: var(--text-dark);
    margin: 0 0 8px;
}

.principle-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Values Showcase */
.values-showcase {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.value-highlight {
    flex: 1;
    background: rgba(0, 167, 196, 0.05);
    border: 1px solid rgba(0, 167, 196, 0.15);
    border-radius: 16px;
    padding: 24px;
  display: flex;
  align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.value-highlight:hover {
  background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.3);
}

.value-icon-modern {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-highlight:hover .value-icon-modern {
    background: white;
}

.value-icon-modern i {
  font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.value-highlight:hover .value-icon-modern i {
    color: var(--primary-color);
}

.value-content h6 {
    font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
    margin: 0 0 4px;
    transition: color 0.3s ease;
}

.value-content span {
    font-size: 12px;
  color: var(--text-muted);
    transition: color 0.3s ease;
}

.value-highlight:hover .value-content h6,
.value-highlight:hover .value-content span {
    color: white;
}

/* Vision Sidebar */
.vision-sidebar {
  display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

/* Goal Card */
.goal-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.goal-year {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.year-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.year-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.goal-content {
    position: relative;
    z-index: 2;
}

.goal-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.goal-content p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Certification Badges */
.cert-badges-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-badge-item {
    background: white;
    border: 1px solid rgba(230, 230, 230, 0.6);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.cert-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.cert-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

.cert-badge-icon i {
    font-size: 16px;
    color: white;
}

.cert-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cert-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.cert-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Vision Image */
.vision-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
}

.vision-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.vision-image-modern:hover img {
    transform: scale(1.05);
}

.image-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.8), rgba(0, 140, 163, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
  transition: all 0.3s ease;
}

.vision-image-modern:hover .image-overlay-modern {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 24px;
}

.overlay-content span {
    font-size: 14px;
    font-weight: 600;
}

/* Progress Indicator */
.progress-indicator {
    background: white;
    border: 1px solid rgba(230, 230, 230, 0.6);
    border-radius: 16px;
    padding: 24px;
}

.progress-header {
  display: flex;
    justify-content: space-between;
  align-items: center;
    margin-bottom: 12px;
}

.progress-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-percent {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.progress-bar-modern {
    width: 100%;
    height: 8px;
    background: rgba(230, 230, 230, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.progress-note {
    font-size: 12px;
  color: var(--text-muted);
}

/* Contact Modern Section */
.contact-content-wrapper {
  position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
  display: flex;
    align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.contact-icon-wrapper i {
    font-size: 24px;
    color: white;
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
    margin: 0 0 8px;
}

.contact-details p {
  font-size: 14px;
  line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 12px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Modern Contact Form */
.contact-form-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.form-header {
  text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
  font-size: 24px;
    font-weight: 700;
  color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

.form-row {
  display: flex;
  gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
  position: relative;
}

.form-group.full-width {
    flex: 100%;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
  position: relative;
}

.form-label.required::after {
    content: '*';
    color: var(--danger);
    margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
    padding: 16px 20px;
  border: 2px solid rgba(230, 230, 230, 0.8);
    border-radius: 12px;
  font-size: 15px;
    color: var(--text-dark);
    background: rgba(248, 249, 250, 0.5);
  transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
  border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 167, 196, 0.08);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(230, 230, 230, 0.6);
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 32px;
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
  border: none;
    border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
    text-decoration: none;
  transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
    min-width: 200px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 167, 196, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-submit-modern i {
    font-size: 16px;
}

/* Contact Map */
.contact-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.contact-map:hover {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

.map-overlay h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.map-overlay p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Modern Footer */
.footer-modern {
    background: #2c5f6f;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

/* Footer Enterprise Styles */
.footer-enterprise {
    background: #2c5f6f;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}

.footer-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.footer-main {
    padding: 0 0 40px;
    position: relative;
    z-index: 2;
}

.footer-brand-section {
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.logo-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-badge i {
    color: var(--primary-color);
    font-size: 14px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin-bottom: 32px;
}

/* Footer Contact Cards */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateX(8px);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-item-icon {
    background: white;
    transform: scale(1.1);
}

.contact-item-icon i {
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-item-icon i {
    color: var(--primary-color);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
}

/* Footer Section Styling */
.footer-section {
    margin-bottom: 40px;
}

.footer-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.footer-section-title i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-radius: 6px;
}

.footer-link:hover {
    color: var(--primary-light);
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 8px;
}

.footer-link i {
    font-size: 14px;
    opacity: 0.7;
    color: var(--primary-color);
    width: 16px;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Certifications */
.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cert-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.cert-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
}

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

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
    margin: 0;
}

.footer-quality-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quality-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.quality-badge i {
    color: var(--primary-color);
    font-size: 14px;
}

.quality-badge span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Styles for Footer */
@media (max-width: 991px) {
    .footer-enterprise {
        padding: 60px 0 0;
    }
    
    .footer-main {
        padding: 0 0 30px;
    }
    
    .footer-quality-badges {
        gap: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-enterprise {
        padding: 40px 0 0;
    }
    
    .footer-brand-section {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .footer-logo {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-link:hover {
        transform: translateY(-2px);
        padding-left: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-quality-badges {
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .footer-enterprise {
        padding: 30px 0 0;
    }
    
    .footer-logo h3 {
        font-size: 20px;
    }
    
    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-quality-badges {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .quality-badge {
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Enterprise Contact Info Grid */
.contact-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 230, 230, 0.8);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

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

.contact-card.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.contact-card.primary .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-card.primary h4,
.contact-card.primary p {
    color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: white;
}

.contact-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.contact-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.contact-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Quick Contact Stats */
.quick-contact-stats {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    background: white;
    border: 1px solid rgba(230, 230, 230, 0.8);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enterprise Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.modern-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.modern-contact-form .form-group {
    flex: 1;
    position: relative;
}

.modern-contact-form .form-group.full-width {
    flex: 100%;
}

.input-wrapper {
    position: relative;
    margin-bottom: 0;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid rgba(230, 230, 230, 0.8);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    background: rgba(248, 249, 250, 0.5);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 167, 196, 0.08);
    transform: translateY(-2px);
}

.input-wrapper label {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.input-wrapper input:focus + label,
.input-wrapper select:focus + label,
.input-wrapper textarea:focus + label,
.input-wrapper input.has-value + label,
.input-wrapper select.has-value + label,
.input-wrapper textarea.has-value + label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    color: var(--primary-color);
    background: white;
    font-weight: 600;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 14px;
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper select:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon {
    color: var(--primary-color);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.select-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    z-index: 15;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
    min-width: 250px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 167, 196, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.contact-submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.privacy-note i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Responsive Styles for Enterprise Contact */
@media (max-width: 991px) {
    .modern-contact-form .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .quick-contact-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .stat-item {
        min-width: calc(50% - 6px);
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .quick-contact-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 14px 40px 14px 16px;
    }
    
    .input-wrapper label {
        left: 16px;
    }
    
    .input-wrapper input:focus + label,
    .input-wrapper select:focus + label,
    .input-wrapper textarea:focus + label,
    .input-wrapper input.has-value + label,
    .input-wrapper select.has-value + label,
    .input-wrapper textarea.has-value + label {
        left: 12px;
    }
}

/* Section Badge and Title Enterprise Style */
.contact-enterprise .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.25);
}

.contact-enterprise .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-enterprise .section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 80px;
}

/* ===== STELLENANGEBOTE / CAREERS PAGE ===== */

/* Jobs Section */
.jobs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Job Header */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.job-icon i {
    font-size: 24px;
    color: white;
}

/* Job Badges */
.job-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge.featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.job-badge.urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.job-badge.flexible {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.job-badge.apprentice {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Job Content */
.job-content {
    flex-grow: 1;
    margin-bottom: 24px;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-type,
.job-location,
.job-salary {
    background: rgba(0, 167, 196, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 167, 196, 0.2);
}

.job-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Job Requirements */
.job-requirements {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.job-requirements li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.job-requirements li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 12px;
    width: 16px;
    height: 16px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Job Benefits */
.job-benefits {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-tag {
    background: rgba(0, 167, 196, 0.08);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0, 167, 196, 0.15);
}

/* Job Actions */
.job-actions {
    margin-top: auto;
}

.btn-apply {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 167, 196, 0.3);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 167, 196, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-apply i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-apply:hover i {
    transform: translateX(4px);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1ecf4 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    color: white;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.benefit-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Benefits Image */
.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.benefits-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefits-badge i {
    color: #fbbf24;
    font-size: 16px;
}

.benefits-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Application Modal */
.application-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

.modal-content {
    background: white;
    border-radius: 28px;
    padding: 48px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    animation: modalSlideIn 0.4s ease-out forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 167, 196, 0.1);
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 1px;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h3::before {
    content: '';
    width: 8px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
}

.modal-close {
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(230, 230, 230, 0.6);
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 12px;
    line-height: 1;
    transition: all 0.3s ease;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: rotate(90deg) scale(1.1);
}

/* Enhanced Application Form */
.application-form {
    position: relative;
}

.application-form .form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.application-form .form-group {
    flex: 1;
    position: relative;
}

.application-form .form-group.full-width {
    flex: 100%;
}

/* Modern Input Wrapper */
.application-form .input-wrapper {
    position: relative;
    margin-bottom: 0;
}

.application-form .input-wrapper input,
.application-form .input-wrapper textarea {
    width: 100%;
    padding: 20px 24px 20px 24px;
    border: 2px solid rgba(230, 230, 230, 0.6);
    border-radius: 16px;
    font-size: 16px;
    color: var(--text-dark);
    background: rgba(248, 249, 250, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    outline: none;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.application-form .input-wrapper input:focus,
.application-form .input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 6px rgba(0, 167, 196, 0.08), 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.application-form .input-wrapper input:valid,
.application-form .input-wrapper textarea:valid {
    border-color: var(--success);
}

.application-form .input-wrapper label {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 8px;
    font-weight: 500;
    z-index: 2;
}

.application-form .input-wrapper input:focus + label,
.application-form .input-wrapper textarea:focus + label,
.application-form .input-wrapper input:not(:placeholder-shown) + label,
.application-form .input-wrapper textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 20px;
    font-size: 14px;
    color: var(--primary-color);
    background: white;
    font-weight: 600;
    transform: scale(0.95);
}

.application-form .input-wrapper textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: 20px;
    line-height: 1.6;
}

/* Input Icons */
.application-form .input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 16px;
    opacity: 0.6;
    z-index: 3;
}

.application-form .input-wrapper input:focus ~ .input-icon,
.application-form .input-wrapper textarea:focus ~ .input-icon {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Enhanced File Upload */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
    border: 3px dashed rgba(0, 167, 196, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.03), rgba(0, 167, 196, 0.01));
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.file-upload-label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 167, 196, 0.05), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.file-upload-label:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateX(100%);
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.08), rgba(0, 167, 196, 0.03));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 167, 196, 0.15);
}

.file-upload-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
}

.file-upload-label:hover .file-upload-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 167, 196, 0.4);
}

.file-upload-icon i {
    font-size: 28px;
    color: white;
}

.file-upload-text {
    text-align: center;
}

.file-upload-text .primary {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.file-upload-text .secondary {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* File Upload States */
.file-upload-wrapper.has-file .file-upload-label {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(40, 167, 69, 0.03));
}

.file-upload-wrapper.has-file .file-upload-icon {
    background: linear-gradient(135deg, var(--success), #198754);
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(230, 230, 230, 0.6);
}

/* Enhanced Submit Button */
.btn-submit-application {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 167, 196, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    min-height: 64px;
}

.btn-submit-application::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.6s ease;
}

.btn-submit-application:hover::before {
    left: 100%;
}

.btn-submit-application:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 167, 196, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-submit-application:active {
    transform: translateY(-2px);
}

.btn-submit-application i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-submit-application:hover i {
    transform: translateX(6px) rotate(15deg);
}

/* Loading State */
.btn-submit-application.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit-application.loading i {
    animation: spin 1s linear infinite;
}

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

/* Privacy Note */
.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    padding: 16px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(230, 230, 230, 0.4);
}

.privacy-note i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Validation Messages */
.validation-message {
    position: absolute;
    bottom: -24px;
    left: 24px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.validation-message.error {
    color: #ef4444;
}

.validation-message.success {
    color: var(--success);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        margin: 16px;
        border-radius: 24px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .application-form .form-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .application-form .input-wrapper input,
    .application-form .input-wrapper textarea {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .file-upload-label {
        padding: 28px 20px;
    }
    
    .btn-submit-application {
        padding: 18px 28px;
        font-size: 16px;
        min-height: 58px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        padding: 24px 20px;
        margin: 12px;
        max-height: 95vh;
    }
    
    .modal-header {
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    
    .modal-header h3 {
        font-size: 22px;
    }
    
    .application-form .input-wrapper input,
    .application-form .input-wrapper textarea {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .application-form .input-wrapper label {
        font-size: 15px;
        left: 18px;
        top: 16px;
    }
    
    .application-form .input-wrapper input:focus + label,
    .application-form .input-wrapper textarea:focus + label,
    .application-form .input-wrapper input:not(:placeholder-shown) + label,
    .application-form .input-wrapper textarea:not(:placeholder-shown) + label {
        left: 14px;
        font-size: 13px;
    }
} 

/* ===== QUALITÄTSSICHERUNG / QUALITY PAGE ===== */

/* Quality Standards Section */
.quality-standards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.quality-standards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

/* Quality Cards */
.quality-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quality-card:hover::before {
    transform: scaleX(1);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.quality-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 167, 196, 0.15);
}

/* Quality Header */
.quality-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
    transition: all 0.3s ease;
}

.quality-card:hover .quality-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.4);
}

.quality-icon i {
    font-size: 28px;
    color: white;
}

/* Quality Badges */
.quality-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.quality-badge.professional {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.quality-badge.leadership {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.quality-badge.education {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.quality-badge.chemistry {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.quality-badge.technology {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.quality-badge.logistics {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Quality Content */
.quality-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quality-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.quality-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Quality Features */
.quality-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.quality-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.quality-features li i {
    color: var(--success);
    margin-right: 12px;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Quality Metrics */
.quality-metrics {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 230, 230, 0.6);
}

.metric {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.quality-card:hover .metric {
    transform: translateY(-2px);
}

/* Quality Promise Section */
.quality-promise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1ecf4 100%);
    position: relative;
    overflow: hidden;
}

.quality-promise-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Promise Features */
.promise-features {
    margin-top: 40px;
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.1), rgba(0, 167, 196, 0.05));
    border: 2px solid rgba(0, 167, 196, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promise-item:hover .promise-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.promise-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.promise-item:hover .promise-icon i {
    color: white;
}

.promise-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.promise-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Quality Certifications */
.quality-certifications {
    position: relative;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.cert-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cert-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon i {
    color: white;
}

.cert-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Quality Page */
@media (max-width: 991px) {
    .quality-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }
    
    .quality-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .promise-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-card {
        padding: 24px;
    }
    
    .quality-header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    
    .quality-icon {
        width: 60px;
        height: 60px;
    }
    
    .quality-icon i {
        font-size: 24px;
    }
    
    .quality-metrics {
        flex-direction: row;
        gap: 16px;
    }
    
    .promise-item {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .promise-icon {
        width: 50px;
        height: 50px;
    }
    
    .promise-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .quality-standards-section {
        padding: 60px 0;
    }
    
    .quality-promise-section {
        padding: 60px 0;
    }
    
    .quality-card {
        padding: 20px;
    }
    
    .quality-title {
        font-size: 18px;
    }
    
    .quality-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .metric {
        padding: 8px;
        background: rgba(248, 249, 250, 0.8);
        border-radius: 8px;
    }
    
    .promise-features {
        margin-top: 30px;
    }
    
    .certifications-grid {
        gap: 12px;
    }
    
    .cert-card {
        padding: 16px;
    }
} 

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-card-modern.primary .stat-number,
.stat-card-modern.primary .activecard {
    color: white !important;
}

/* Spezifische Regel für activecard in primary stat-card */
.stat-card-modern.primary .stat-number.activecard {
    color: white !important;
}

.activecard {
    color: white !important;
}

/* Enhanced Logo Text Styling */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: -2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* S&K Logo Farben */
.logo-main::before {
    content: 'S';
    color: #2c5f6f; /* Dunkleres Blau für S */
    font-weight: 800;
}

.logo-main::after {
    content: '';
}

/* Alternative Lösung mit Spans */
.logo-s-styled {
    color: #2c5f6f !important; /* Dunkleres Blau für S */
    font-weight: 800;
    margin-right: 0.1em;
}

.logo-ampersand-styled {
    color: #2c5f6f !important; /* Gleiche Farbe wie S */
    font-weight: 600;
    margin: 0 -0.1em; /* Negativer Margin für engeren Abstand */
    font-size: 0.9em;
}

.logo-k-styled {
    color: #00A7C4 !important; /* Helleres Blau für K */
    font-weight: 800;
    margin-left: 0.1em;
}

/* Override für doppeltes S Problem */
.logo-main::before {
    content: '' !important;
    display: none !important;
}

.logo-main::after {
    content: '' !important;
    display: none !important;
}

/* FINALE LÖSUNG für activecard in primary stat-card */
.stat-card-modern.primary .stat-number.counter.activecard,
.stat-card-modern.primary .activecard,
.stat-card-modern.primary .stat-number.activecard,
.stat-card-modern.primary span.stat-number.counter.activecard {
    color: white !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    background-clip: initial !important;
}

/* Navbar padding reduzieren für mehr Platz */
.navbar {
    padding: 0.8rem 1rem;
    min-height: 60px;
}

/* Mobile Hamburger anpassen */
.navbar-toggler {
    width: 46px;
    height: 38px;
    padding: 0.4rem 0.5rem;
}

.navbar.scrolled .navbar-toggler {
    width: 40px;
    height: 32px;
    padding: 0.3rem 0.4rem;
}

.navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
}

.navbar.scrolled .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
}

/* ===== Z-INDEX FIX FÜR SERVICE DROPDOWN ===== */

/* Service-Auswahl Dropdown - Höchste Priorität */
.search-field .form-select,
.hero-search-card .form-select {
    z-index: 1000 !important;
    position: relative !important;
}

.search-field .form-select:focus,
.hero-search-card .form-select:focus {
    z-index: 1100 !important;
}

/* Kontakt-Formular z-index reduzieren */
.contact-form-modern,
.contact-form-wrapper {
    z-index: 10 !important;
}

.application-modal {
    z-index: 9999 !important;
}

/* Hero Search Card overflow anpassen */
.hero-search-card {
    overflow: visible !important;
    z-index: 500 !important;
}

/* Search Row overflow anpassen */
.search-row {
    overflow: visible !important;
    z-index: 600 !important;
    position: relative !important;
}

/* Field-Wrapper für bessere Kontrolle */
.search-field {
    overflow: visible !important;
    z-index: 700 !important;
    position: relative !important;
}

/* ===== ENHANCED HERO CTA BUTTONS ===== */

/* Hero CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Primary Hero Button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-hero-primary::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.6s ease;
}

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

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 167, 196, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-primary i {
    font-size: 18px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover i {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Secondary Hero Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
    text-decoration: none;
}

.btn-hero-secondary i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover i {
    transform: scale(1.1);
}

/* Call Button */
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5), 0 0 0 8px rgba(16, 185, 129, 0.1);
    }
}

.btn-hero-call:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    animation: none;
}

.btn-hero-call i {
    font-size: 14px;
    animation: bounce-phone 1.5s infinite;
}

@keyframes bounce-phone {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(230, 230, 230, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 167, 196, 0.2);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 50%;
    padding: 2px;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Responsive Design für Hero Buttons */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-call {
        width: 100%;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }
    
    .benefit-item {
        justify-content: center;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .btn-hero-primary {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-hero-call {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Hamburger beim Scrollen kleiner machen */
.navbar.scrolled .navbar-toggler {
    padding: 0.4rem 0.5rem;
    font-size: 1rem;
    width: 44px;
    height: 36px;
    border-radius: 6px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
}

/* Mobile Dropdown - Korrekte Größe nur bei Klick */
@media (max-width: 991px) {
    /* Standard-Zustand: versteckt */
    .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
        max-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        display: none !important;
        transition: all 0.3s ease !important;
    }
    
    /* Nur wenn explizit geöffnet (.show Klasse) */
    .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
        max-height: 800px !important;
        height: auto !important;
        padding: 20px 0 !important;
        overflow: visible !important;
        overflow-y: visible !important;
        margin-bottom: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        transition: all 0.3s ease !important;
    }
}

/* Platz für das Dreieck am Ende */
.navbar .nav-item.dropdown > .nav-link,
.navbar .dropdown-toggle,
.navbar .dropdown-hover-toggle {
    position: relative !important;
    padding-right: 20px !important;
}

/* =====================================
   DESKTOP ICON REMOVAL - MOBILE KEEP
   ===================================== */

/* Desktop: Icons verstecken */
@media (min-width: 992px) {
    .navbar-nav .nav-link i {
        display: none !important;
    }
    
    /* Desktop Navbar Links ohne Icons anpassen */
    .navbar .navbar-nav .nav-link {
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        padding: 8px 16px !important;
        margin: 0 4px !important;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .navbar .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(0, 167, 196, 0.05);
        transform: translateY(-1px);
    }
    
    /* Dropdown Icons auf Desktop auch verstecken */
    .navbar .dropdown-item i {
        display: none !important;
    }
    
    .navbar .dropdown-item {
        font-size: 0.9rem !important;
        padding: 8px 16px !important;
    }
}

/* Mobile: Icons weiterhin anzeigen */
@media (max-width: 991px) {
    .navbar-nav .nav-link i {
        display: inline-block !important;
        font-size: 0.95rem !important;
        margin-right: 10px !important;
        opacity: 0.85;
        color: var(--primary-color);
    }
    
    .navbar-nav .nav-link:hover i {
        opacity: 1;
        color: white;
        transform: translateX(3px);
    }
    
    .navbar-nav .nav-item.dropdown .nav-link i {
        color: var(--primary-color);
    }
    
    .navbar-nav .nav-item.dropdown.show .nav-link i,
    .navbar-nav .nav-item.dropdown .nav-link:hover i {
        color: white;
        transform: scale(1.1);
    }
    
    /* Mobile Dropdown Icons behalten */
    .navbar .dropdown-item i {
        display: inline-block !important;
        font-size: 0.8rem !important;
        margin-right: 10px !important;
    }
}

/* Tablet und kleinere Mobile */
@media (max-width: 768px) {
    .navbar-nav .nav-link i {
        font-size: 1.1rem !important;
        margin-right: 15px !important;
    }
}

@media (max-width: 576px) {
    .navbar-nav .nav-link i {
        font-size: 1rem !important;
        margin-right: 12px !important;
    }
}

/* =====================================
   ENHANCED SMARTPHONE HERO OPTIMIZATIONS
   ===================================== */

/* Smartphone Spezific Optimizations */
@media (max-width: 480px) {
    .hero-enterprise {
        min-height: 100vh;
        padding-top: 80px;
        background-attachment: scroll; /* Bessere Performance auf Mobile */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-enterprise .container-fluid {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 80px);
    }
    
    .hero-enterprise .row {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content {
        max-width: 100%;
        padding: 0 0.75rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-enterprise .hero-main-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-enterprise .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
        font-weight: 700;
        text-align: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content .lead {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }
    
    /* Mobile-First Button Layout - Zentriert */
    .hero-cta-buttons {
        max-width: 100%;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-cta-buttons .d-flex {
        gap: 0.75rem !important;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px; /* Maximale Breite für bessere Zentrierung */
        margin: 0 auto;
        padding: 14px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 12px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }
    
    /* Prominent Mobile Call Button - Zentriert */
    .btn-hero-call.w-100 {
        width: 100% !important;
        max-width: 320px !important;
        margin: 1rem auto 0 auto;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 15px;
        background: linear-gradient(135deg, #28a745, #20c997);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        animation: pulse-mobile 3s infinite;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    @keyframes pulse-mobile {
        0%, 100% { 
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
            transform: scale(1.02);
        }
    }
    
    /* Mobile Benefits Stack - Zentriert */
    .hero-benefits {
        max-width: 100%;
        margin-bottom: 1.5rem !important;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-benefits .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
        max-width: 320px;
        width: 100%;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 167, 196, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }
    
    .benefit-item i {
        font-size: 1rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    /* Mobile Stats Compact - Zentriert */
    .hero-stats {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats .d-flex {
        max-width: 320px;
        gap: 0.75rem !important;
        justify-content: space-between;
        width: 100%;
    }
    
    .stat-card {
        flex: 1;
        padding: 1rem 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 167, 196, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1.2;
        margin-bottom: 0.25rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.7rem;
        color: var(--text-muted);
        line-height: 1.3;
        font-weight: 500;
        text-align: center;
    }
    
    /* Mobile Image Optimization - Zentriert */
    .hero-image-mobile {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-mobile img {
        max-height: 220px;
        width: 100%;
        max-width: 320px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .hero-image-mobile:hover img {
        transform: scale(1.01);
    }
}

/* Extra Small Smartphones (≤375px) */
@media (max-width: 375px) {
    .hero-enterprise .container-fluid {
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-enterprise .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.75rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content .lead {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        text-align: center;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 45px;
        max-width: 280px; /* Angepasste Breite für sehr kleine Bildschirme */
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .btn-hero-call.w-100 {
        padding: 14px 16px;
        font-size: 0.95rem;
        max-width: 280px !important;
        margin: 1rem auto 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-benefits {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-benefits .d-flex {
        max-width: 280px;
        align-items: center;
    }
    
    .benefit-item {
        padding: 10px 14px;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats .d-flex {
        max-width: 280px;
        justify-content: space-between;
    }
    
    .stat-card {
        padding: 0.75rem 0.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.65rem;
        text-align: center;
    }
    
    .hero-image-mobile {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-mobile img {
        max-height: 200px;
        border-radius: 12px;
        max-width: 280px;
        width: 100%;
    }
}

/* Touch Optimizations */
@media (max-width: 576px) {
    /* Larger touch targets */
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-call {
        min-height: 48px; /* iOS recommended minimum */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Prevent zoom on inputs */
    .hero-content * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Smooth scrolling for mobile */
    .hero-enterprise {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
    .hero-enterprise {
        will-change: transform;
        transform: translateZ(0); /* Hardware acceleration */
    }
    
    .hero-image-mobile img {
        will-change: transform;
        backface-visibility: hidden;
    }
    
    /* Reduce animations on lower-end devices */
    @media (prefers-reduced-motion: reduce) {
        .btn-hero-call.w-100 {
            animation: none;
        }
        
        .benefit-item,
        .stat-card,
        .hero-image-mobile img {
            transition: none;
        }
    }
}

/* Mobile Text und Button Zentrierung - Zusätzliche Regeln */
.hero-enterprise .hero-content.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
}

.hero-enterprise .hero-main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-enterprise h1.text-center {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-enterprise p.lead.text-center {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/* Button Container Zentrierung */
.hero-cta-buttons.d-flex.flex-column.align-items-center {
    width: 100%;
    align-items: center !important;
    justify-content: center;
}

.hero-cta-buttons .d-flex.justify-content-center {
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

/* Einzelne Button Zentrierung */
.btn-hero-primary.text-center,
.btn-hero-secondary.text-center,
.btn-hero-call.text-center {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Zentrierung */
.hero-benefits.d-flex.justify-content-center {
    justify-content: center !important;
    width: 100%;
}

.hero-benefits .d-flex.justify-content-center {
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

.benefit-item.text-center {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Stats Zentrierung */
.hero-stats.d-flex.justify-content-center {
    justify-content: center !important;
    width: 100%;
}

.hero-stats .d-flex .stat-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Image Zentrierung */
.hero-image-wrapper .d-flex.justify-content-center {
    justify-content: center !important;
    width: 100%;
}
