/* =========================================================================
   Seitenspezifisches CSS: webseiten
   -------------------------------------------------------------------------
   Automatisch aus dem frueheren Inline-<style> der Seite herausgeloest
   (tools/split-page-css.py). Die Navigationsregeln sind entfallen, sie
   stehen jetzt einmalig in css/clickro-nav.css.
   ========================================================================= */

/* Anpassungen für die Schriftarten */
            body, .body-font {
                font-family: 'Inter', sans-serif;
                font-weight: 400;
            }

h1, h2, h3, h4, h5, h6, .alt-font {
                font-family: 'Poppins', sans-serif;
            }

/* Formularelemente */
            .form-control {
                padding: 12px 16px;
                height: auto;
                border-radius: 8px;
                border: 1px solid #e0e0e0;
                background-color: #f8f9fa;
                font-size: 15px;
                transition: all 0.3s ease;
                box-shadow: none;
            }

.form-control:focus {
                border-color: #4e6ef2;
                background-color: #fff;
                box-shadow: 0 0 0 3px rgba(78, 110, 242, 0.1);
            }

label {
                font-weight: 500;
                margin-bottom: 8px;
                display: block;
                color: #333;
                font-size: 15px;
            }

select.form-control {
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: right 16px center;
                padding-right: 40px;
            }

textarea.form-control {
                min-height: 120px;
            }

/* Verbesserte Checkboxen und Radiobuttons */
            .form-check {
                padding-left: 0;
                margin-bottom: 16px;
                position: relative;
            }

/* Button Styling */
            .btn-gradient-primary {
                background: linear-gradient(45deg, #4e6ef2, #7986cb);
                border: none;
                color: white;
                font-weight: 600;
                padding: 14px 30px;
                border-radius: 8px;
                transition: all 0.3s ease;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                font-size: 15px;
                box-shadow: 0 4px 10px rgba(78, 110, 242, 0.2);
            }

.btn-gradient-primary:hover {
                background: linear-gradient(45deg, #3f5ce0, #6571b8);
                transform: translateY(-2px);
                box-shadow: 0 6px 15px rgba(78, 110, 242, 0.3);
            }

/* Neue Stile für die verbesserte Formulargestaltung */
            
            /* Feature-Items in der linken Spalte */
            .feature-item {
                transition: transform 0.3s ease;
            }

.feature-item:hover {
                transform: translateX(5px);
            }

.feature-icon {
                width: 36px;
                height: 36px;
                background: rgba(255, 255, 255, 0.15);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

.feature-item:hover .feature-icon {
                background: rgba(255, 255, 255, 0.25);
                transform: scale(1.1);
            }

/* Industry Selector Styles - Verbesserte Version mit Bildern */
            .industry-selector {
                margin-bottom: 20px;
            }

.industry-option {
                position: relative;
                flex: 0 0 calc(33.333% - 1rem);
                max-width: calc(33.333% - 1rem);
            }

.industry-radio {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0;
            }

.industry-label {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 140px;
                border-radius: 12px;
                background-color: rgba(255, 255, 255, 0.7);
                border: 2px solid #e0e0e0;
                padding: 10px;
                cursor: pointer;
                transition: all 0.3s ease;
                text-align: center;
                position: relative;
                overflow: hidden;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
            }

.industry-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                opacity: 0.2;
                transition: all 0.4s ease;
                z-index: -1;
            }

.industry-icon-wrap {
                width: 60px;
                height: 60px;
                background: linear-gradient(45deg, #4e6ef2, #7986cb);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 10px;
                transition: all 0.4s ease;
                position: relative;
                z-index: 2;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            }

.industry-icon {
                font-size: 24px;
                color: white;
                transition: all 0.4s ease;
            }

.industry-label span {
                font-size: 16px;
                font-weight: 600;
                color: #333;
                transition: all 0.3s ease;
                position: relative;
                z-index: 2;
                text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
            }

.industry-radio:checked + .industry-label {
                background-color: rgba(238, 241, 255, 0.9);
                border-color: #4e6ef2;
                box-shadow: 0 8px 20px rgba(78, 110, 242, 0.25);
                transform: translateY(-5px);
            }

.industry-radio:checked + .industry-label .industry-bg {
                opacity: 0.3;
                transform: scale(1.1);
            }

.industry-radio:checked + .industry-label .industry-icon-wrap {
                transform: scale(1.1);
                background: linear-gradient(45deg, #3f5ce0, #6571b8);
            }

.industry-label:hover {
                border-color: #4e6ef2;
                transform: translateY(-5px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            }

.industry-label:hover .industry-icon-wrap {
                transform: scale(1.05);
            }

.industry-label:hover .industry-bg {
                opacity: 0.3;
                transform: scale(1.05);
            }

/* Responsives Design für mobile Geräte */
            @media (max-width: 992px) {
                .industry-option {
                    flex: 0 0 calc(50% - 1rem);
                    max-width: calc(50% - 1rem);
                }
                
                .industry-label {
                    height: 120px;
                }
                
                .industry-icon-wrap {
                    width: 50px;
                    height: 50px;
                }
                
                .industry-icon {
                    font-size: 20px;
                }
            }

@media (max-width: 576px) {
.industry-option {
                    flex: 0 0 100%;
                    max-width: 100%;
                    margin-right: 0 !important;
                }

.industry-label {
                    height: 100px;
                    padding: 8px;
                    flex-direction: row;
                    justify-content: flex-start;
                }

.industry-icon-wrap {
                    width: 45px;
                    height: 45px;
                    margin-bottom: 0;
                    margin-right: 15px;
                }

.industry-icon {
                    font-size: 18px;
                }

.industry-label span {
                    font-size: 15px;
                    text-align: left;
                }
}

/* Preview Container */
            .preview-container {
                transition: all 0.3s ease;
                border-radius: 10px;
                background-color: #f8f9fa;
            }

.preview-template {
                position: relative;
                width: 180px;
                height: 120px;
                border-radius: 8px;
                overflow: hidden;
                cursor: pointer;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }

.preview-template:hover {
                transform: translateY(-5px) scale(1.02);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            }

.preview-image {
                position: relative;
                height: 100%;
                width: 100%;
            }

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

.preview-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
                padding: 10px;
                color: white;
                font-size: 12px;
                font-weight: 500;
            }

.selected-industry-text {
                color: #4e6ef2;
                font-weight: 600;
            }

/* Animationen für Trust-Badge */
            .trust-badge {
                position: relative;
                overflow: hidden;
            }

.trust-badge:before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient(
                    to bottom right,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.1) 50%,
                    rgba(255, 255, 255, 0) 100%
                );
                transform: rotate(45deg);
                animation: shine 3s infinite;
            }

@keyframes shine {
                0% {
                    left: -50%;
                    top: -50%;
                }
                100% {
                    left: 150%;
                    top: 150%;
                }
            }

/* Navigations-Styling */
            .navbar-nav {
                margin-left: 0 !important;
                text-align: center !important;
            }

/* Neue Logo- und Navigationsstyling */
            .col-auto {
                flex: 0 0 auto;
                width: auto;
            }

.navbar > .container-fluid {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

@media (max-width: 991px) {
.navbar > .container-fluid {
                    display: flex;
                    justify-content: center;
                    position: relative;
                }

/* Mobiles Dropdown-Menü */
                .dropdown-menu.mega-menu {
                    background-color: rgba(255, 255, 255, 0.05) !important; 
                    padding: 0 !important;
                }

/* Korrektur für abgeschnittenen Text im mobilen Menü */
                .nav-item.dropdown .nav-link.dropdown-toggle {
                    white-space: normal !important;
                    overflow: visible !important;
                    text-overflow: initial !important;
                    width: auto !important;
                    display: inline-block !important;
                    position: relative;
                }

/* Pfeil für Dropdown */
                .nav-item.dropdown .nav-link.dropdown-toggle:after {
                    display: inline-block;
                    margin-left: 8px;
                    content: "\f107";
                    font-family: "Font Awesome 5 Free";
                    font-weight: 900;
                    transition: transform 0.3s ease;
                    vertical-align: middle;
                    font-size: 14px;
                }

.nav-item.dropdown.show .nav-link.dropdown-toggle:after {
                    transform: rotate(180deg);
                }

/* Verbessertes Design für mobile Menüs */
                .dropdown-menu.mega-menu {
                    background: rgba(45, 45, 58, 0.95) !important;
                    border-radius: 10px !important;
                    border: 1px solid rgba(255, 255, 255, 0.1) !important;
                    backdrop-filter: blur(10px) !important;
                    -webkit-backdrop-filter: blur(10px) !important;
                }

/* Sicherstelle, dass das Menü-Overlay den gesamten Bildschirm abdeckt */
                .dropdown-menu.mega-menu.show {
                    width: 100% !important;
                    min-width: 100% !important;
                    max-width: 100% !important;
                    display: block !important;
                }
}

/* Mega-Menü-Styling für Dienstleistungen */
            .mega-menu-container {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 245, 255, 0.97) 100%);
                box-shadow: 0 15px 45px rgba(74, 0, 224, 0.15), 0 8px 15px rgba(0, 0, 0, 0.07);
                border-radius: 16px;
                padding: 30px;
                width: 850px;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
                z-index: 1000;
                -webkit-backdrop-filter: blur(15px);
                backdrop-filter: blur(15px);
                border: 1px solid rgba(255, 255, 255, 0.4);
                margin-top: 0;
            }

/* Dropdown-Menü-Styling */
            .mega-menu {
                position: static !important;
                transform: none !important;
                padding: 0 !important;
                min-width: auto !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                border: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                margin-top: 0 !important;
                background-color: transparent !important;
                width: 100% !important;
                left: 0 !important;
            }

/* Anpassung für das Dropdown-Menü - sowohl Hover als auch Klick */
            .nav-item.dropdown:hover .mega-menu-container,
            .nav-item.dropdown.show .mega-menu-container {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%);
                margin-top: 0;
            }

/* Aktiver Zustand für den Menüpunkt */
            .nav-item.dropdown.show .nav-link,
            .nav-item.dropdown:hover .nav-link {
                color: #4a00e0;
            }

/* Mobile Anpassungen für das Mega-Menü */
            @media (max-width: 991px) {
                .mega-menu-container {
                    width: 100%;
                    max-width: 100%;
                    position: static;
                    transform: none !important;
                    box-shadow: none;
                    border-radius: 0;
                    margin-top: 0 !important;
                    padding: 15px;
                }
                
                .nav-item.dropdown:hover .mega-menu-container,
                .nav-item.dropdown.show .mega-menu-container {
                    transform: none !important;
                }
                
                .dropdown-item {
                    padding: 15px;
                }
                
                .menu-icon {
                    width: 40px;
                    height: 40px;
                    font-size: 18px;
                }
                
                .menu-title {
                    font-size: 16px;
                }
                
                .menu-desc {
                    font-size: 14px;
                }
            }

/* Verbesserte Unterkategorien-Styles */
            .subcategory-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                margin-top: 15px;
            }

.subcategory-item {
                position: relative;
                flex: 0 0 calc(20% - 10px);
                max-width: calc(20% - 10px);
                transition: all 0.3s ease;
            }

.subcategory-input {
                position: absolute;
                opacity: 0;
                height: 0;
                width: 0;
            }

.subcategory-label {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                height: 80px;
                padding: 10px;
                background-color: rgba(255, 255, 255, 0.8);
                border: 1px solid #e0e0e0;
                border-radius: 10px;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                position: relative;
                overflow: hidden;
            }

.subcategory-icon {
                font-size: 22px;
                color: #4e6ef2;
                margin-bottom: 8px;
                transition: all 0.3s ease;
            }

.subcategory-text {
                font-size: 14px;
                font-weight: 500;
                color: #333;
                transition: all 0.3s ease;
                text-align: center;
                width: 100%;
            }

.subcategory-input:checked + .subcategory-label {
                background-color: rgba(238, 241, 255, 0.9);
                border-color: #4e6ef2;
                box-shadow: 0 4px 12px rgba(78, 110, 242, 0.2);
                transform: translateY(-3px);
            }

.subcategory-input:checked + .subcategory-label .subcategory-icon {
                color: #3f5ce0;
                transform: scale(1.1);
            }

.subcategory-input:checked + .subcategory-label .subcategory-text {
                color: #3f5ce0;
                font-weight: 600;
            }

.subcategory-label:hover {
                border-color: #4e6ef2;
                transform: translateY(-3px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

/* Animation für neue Unterkategorien */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

.subcategory-grid {
                animation: fadeInUp 0.5s ease forwards;
            }

.subcategory-item {
                opacity: 0;
                animation: fadeInUp 0.4s ease forwards;
            }

/* Animation staggered delay für Unterkategorien */
            .subcategory-item:nth-child(1) { animation-delay: 0.1s; }

.subcategory-item:nth-child(2) { animation-delay: 0.15s; }

.subcategory-item:nth-child(3) { animation-delay: 0.2s; }

.subcategory-item:nth-child(4) { animation-delay: 0.25s; }

.subcategory-item:nth-child(5) { animation-delay: 0.3s; }

/* Responsives Design für Unterkategorien */
            @media (max-width: 992px) {
                .subcategory-item {
                    flex: 0 0 calc(25% - 10px);
                    max-width: calc(25% - 10px);
                }
            }

@media (max-width: 768px) {
.subcategory-item {
                    flex: 0 0 calc(33.33% - 10px);
                    max-width: calc(33.33% - 10px);
                }
}

@media (max-width: 576px) {
.subcategory-item {
                    flex: 0 0 calc(50% - 6px);
                    max-width: calc(50% - 6px);
                }

.subcategory-label {
                    height: 70px;
                    padding: 8px;
                }

.subcategory-icon {
                    font-size: 18px;
                    margin-bottom: 5px;
                }

.subcategory-text {
                    font-size: 12px;
                }
}

/* Verbesserte Feature-Box Styles */
            
            
            
            
            
            
            
            .feature-title {
                font-weight: 600;
                font-size: 15px;
                color: #333;
                margin-bottom: 5px;
                transition: all 0.3s ease;
            }

.feature-desc {
                font-size: 13px;
                color: #666;
                margin-bottom: 0;
            }

.feature-grid-item,
            
            .feature-grid-item:nth-child(1) { animation-delay: 0.05s; }

.feature-grid-item:nth-child(2) { animation-delay: 0.1s; }

.feature-grid-item:nth-child(3) { animation-delay: 0.15s; }

.feature-grid-item:nth-child(4) { animation-delay: 0.2s; }

.feature-grid-item:nth-child(5) { animation-delay: 0.25s; }

.feature-grid-item:nth-child(6) { animation-delay: 0.3s; }

@media (max-width: 768px) {
.feature-title {
                    font-size: 14px;
                }

.feature-desc {
                    font-size: 12px;
                }
}

/* Neue moderne Kontaktkarten im uiverse.io-Stil */
            .contact-card {
                position: relative;
                overflow: hidden;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
                border-radius: 20px;
                padding: 2rem;
                margin-bottom: 20px;
                min-height: 200px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                border: 1px solid rgba(255, 255, 255, 0.18);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
                transition: all 0.4s ease;
                z-index: 1;
            }

.contact-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #ffffff;
                z-index: -1;
            }

.contact-card-icon {
                width: 75px;
                height: 75px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 28px;
                margin-bottom: 1.5rem;
                position: relative;
                z-index: 1;
                transition: transform 0.5s ease;
            }

.contact-card-icon::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                border-radius: 50%;
                background: inherit;
                z-index: -1;
                filter: blur(12px);
                opacity: 0.6;
                transform: translateY(8px) scale(0.8);
                transition: all 0.4s ease;
            }

.address-icon {
                background: linear-gradient(135deg, #4e6ef2 0%, #7986cb 100%);
                color: white;
                box-shadow: 0 10px 20px rgba(78, 110, 242, 0.25);
            }

.phone-icon {
                background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
                color: white;
                box-shadow: 0 10px 20px rgba(107, 114, 221, 0.25);
            }

.email-icon {
                background: linear-gradient(135deg, #7d56f0 0%, #b28af8 100%);
                color: white;
                box-shadow: 0 10px 20px rgba(125, 86, 240, 0.25);
            }

.contact-card-content {
                width: 100%;
                z-index: 1;
            }

.contact-card h5 {
                font-size: 20px;
                font-weight: 600;
                color: #333;
                margin-bottom: 1rem;
                transition: color 0.3s ease;
            }

.contact-card p {
                color: #555;
                margin-bottom: 0;
                font-size: 15px;
                line-height: 1.6;
                transition: color 0.3s ease;
            }

.contact-link {
                color: #4e6ef2;
                text-decoration: none;
                font-weight: 500;
                position: relative;
                transition: all 0.3s ease;
            }

.contact-link::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: -2px;
                left: 0;
                background: linear-gradient(135deg, #4e6ef2 0%, #7986cb 100%);
                transition: all 0.3s ease;
            }

.contact-link:hover {
                color: #3f5ce0;
            }

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

.contact-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                border-color: rgba(78, 110, 242, 0.18);
            }

.contact-card:hover .contact-card-icon {
                transform: scale(1.1) rotate(5deg);
            }

.contact-card:hover .contact-card-icon::after {
                transform: translateY(6px) scale(0.9);
                opacity: 0.8;
            }

.contact-card-glow {
                position: absolute;
                width: 150px;
                height: 150px;
                top: -75px;
                left: -75px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                filter: blur(60px);
                opacity: 0;
                transition: all 0.6s ease;
                pointer-events: none;
            }

.contact-card:hover .contact-card-glow {
                opacity: 0.7;
                transform: scale(2) rotate(30deg);
            }

@media (max-width: 768px) {
.contact-card {
                    padding: 1.5rem;
                    min-height: 180px;
                }

.contact-card-icon {
                    width: 60px;
                    height: 60px;
                    font-size: 22px;
                    margin-bottom: 1rem;
                }

.contact-card h5 {
                    font-size: 18px;
                    margin-bottom: 0.5rem;
                }

.contact-card p, .contact-link {
                    font-size: 14px;
                }
}

/* Contact Card Styling */
            .contact-card {
                position: relative;
                background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(242,242,242,0.4) 100%);
                border-radius: 16px;
                padding: 2rem 1.5rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.18);
                text-align: center;
            }

.contact-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }

.contact-card-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 70px;
                height: 70px;
                border-radius: 50%;
                background: var(--primary-color, #0d6efd);
                color: white;
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
            }

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

.contact-card h5 {
                margin-bottom: 1rem;
                font-weight: 600;
                color: var(--dark, #212529);
                position: relative;
                z-index: 2;
            }

.contact-card p, 
            .contact-card .contact-link {
                color: var(--dark, #212529);
                text-decoration: none;
                position: relative;
                z-index: 2;
                transition: color 0.3s ease;
            }

.contact-card .contact-link:hover {
                color: var(--primary-color, #0d6efd);
            }

.contact-card-glow {
                position: absolute;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                background: radial-gradient(var(--primary-color, #0d6efd), transparent 70%);
                opacity: 0.1;
                top: 10%;
                right: 10%;
                z-index: 1;
                transition: all 0.5s ease;
            }

.contact-card:hover .contact-card-glow {
                transform: scale(1.5);
                opacity: 0.15;
            }

.address-icon {
                background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            }

.phone-icon {
                background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            }

.email-icon {
                background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            }

@media (max-width: 767px) {
.contact-card {
                    padding: 1.5rem 1rem;
                }

.contact-card-icon {
                    width: 60px;
                    height: 60px;
                    font-size: 1.25rem;
                    margin-bottom: 1rem;
                }
}

.contact-section {
                background-color: #f8f9fa;
                padding: 60px 0;
            }

.contact-card {
                background-color: #fff;
                border-radius: 15px;
                padding: 40px 25px;
                text-align: center;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

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

.icon-oval {
                width: 70px;
                height: 40px;
                background-color: #5d5fef;
                border-radius: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
            }

.icon-oval i {
                color: white;
                font-size: 20px;
            }

.contact-title {
                color: #333;
                font-weight: 600;
                margin-bottom: 20px;
                font-size: 18px;
            }

.contact-info {
                margin-top: 15px;
            }

.contact-info p {
                margin-bottom: 0;
                color: #666;
                line-height: 1.6;
            }

.contact-link {
                color: #666;
                text-decoration: none;
                transition: color 0.3s ease;
            }

.contact-link:hover {
                color: #5d5fef;
            }

@media (max-width: 768px) {
.contact-card {
                    margin-bottom: 30px;
                }
}

/* Neues modernes Dropdown-Menü-Styling im Glasmorphismus-Stil */
            .modern-dropdown {
                padding: 12px !important;
                width: auto !important;
                min-width: 250px;
                max-width: 280px;
                border-radius: 20px !important;
                background: rgba(255, 255, 255, 0.08) !important;
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                border: 1px solid rgba(255, 255, 255, 0.1);
                transform: translateX(-50%);
                position: absolute;
                left: 50%;
                overflow: hidden;
            }

@keyframes pulse {
                0% { transform: scale(1); }
                50% { transform: scale(1.05); }
                100% { transform: scale(1); }
            }

/* Zusätzliche CSS-Fixes für mobile Dropdown-Menüs */
            @media (max-width: 991px) {
                .modern-dropdown {
                    padding: 8px !important;
                    width: 100% !important;
                    max-width: 100% !important;
                    min-width: auto;
                    left: 0 !important;
                    transform: none !important;
                    border-radius: 12px !important;
                    background: transparent !important;
                    box-shadow: none !important;
                    border: none !important;
                }
                
                .service-cards {
                    gap: 6px;
                }
                
                .service-card {
                    padding: 10px 12px;
                }
                
                .service-icon {
                    width: 32px;
                    height: 32px;
                    min-width: 32px;
                }
            }

.contact-section {
                        background-color: #f8f9fa;
                        padding: 60px 0;
                    }

.contact-card {
                        background-color: #fff;
                        border-radius: 15px;
                        padding: 40px 25px;
                        text-align: center;
                        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                    }

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

.icon-oval {
                        width: 70px;
                        height: 40px;
                        background-color: #5d5fef;
                        border-radius: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin: 0 auto 20px;
                    }

.icon-oval i {
                        color: white;
                        font-size: 20px;
                    }

.contact-title {
                        color: #333;
                        font-weight: 600;
                        margin-bottom: 20px;
                        font-size: 18px;
                    }

.contact-info {
                        margin-top: 15px;
                    }

.contact-info p {
                        margin-bottom: 0;
                        color: #666;
                        line-height: 1.6;
                    }

.contact-link {
                        color: #666;
                        text-decoration: none;
                        transition: color 0.3s ease;
                    }

.contact-link:hover {
                        color: #5d5fef;
                    }

@media (max-width: 768px) {
.contact-card {
                            margin-bottom: 30px;
                        }
}
