/* Frontend Styles */

:root {
    --primary-color: #07bff4;
    --secondary-color: #0599c7;
    --success-color: #48c774;
    --danger-color: #f14668;

    /* Light Mode */
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #f8f9fa;
    --border-color: #dee2e6;
    --navbar-bg: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --navbar-text: #ffffff;
}

/* Dark Mode */
[data-bs-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --card-bg: #2d2d2d;
    --border-color: #444444;
    --navbar-bg: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    --navbar-text: #e0e0e0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation */
.navbar {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: var(--navbar-bg) !important;
    padding: 0.75rem 0 !important;
    border-bottom: 2px solid rgba(7, 191, 244, 0.3);
    transition: all 0.3s ease;
}

/* Logo Styling */
.navbar-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: absolute;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    transition: all 0.3s ease;
    color: var(--navbar-text) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(7, 191, 244, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Control Buttons (Theme & Language) */
.navbar-control-btn {
    background: rgba(7, 191, 244, 0.15);
    border: 1px solid rgba(7, 191, 244, 0.4);
    color: #07bff4;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 40px;
    height: 40px;
    justify-content: center;
}

.navbar-control-btn:hover {
    background: rgba(7, 191, 244, 0.3);
    border-color: #07bff4;
    transform: translateY(-2px);
}

.navbar-control-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

/* Desktop Controls Group */
.navbar-desktop-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Controls Group */
.navbar-mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

/* Hamburger Toggle */
.navbar-toggler {
    border: 1px solid rgba(7, 191, 244, 0.5);
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    background: rgba(7, 191, 244, 0.1);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(7, 191, 244, 0.25);
}

.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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: 1px solid rgba(7, 191, 244, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 150px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(7, 191, 244, 0.1);
    color: var(--primary-color);
}

.dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

/* Dark Mode Navbar */
[data-bs-theme="dark"] .navbar {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(7, 191, 244, 0.2);
}

[data-bs-theme="dark"] .navbar-control-btn {
    background: rgba(7, 191, 244, 0.2);
    border-color: rgba(7, 191, 244, 0.4);
    color: #07bff4;
}

[data-bs-theme="dark"] .navbar-control-btn:hover {
    background: rgba(7, 191, 244, 0.35);
}

[data-bs-theme="dark"] .navbar-toggler {
    background: rgba(7, 191, 244, 0.15);
}

[data-bs-theme="dark"] .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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-logo {
        height: 220px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .navbar-control-btn {
        padding: 0.45rem 0.65rem;
        font-size: 0.95rem;
        min-width: 40px;
        height: 40px;
    }
    
    .navbar-toggler {
        padding: 0.45rem 0.65rem;
        min-width: 40px;
        height: 40px;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 220px;
        left: -30px;
    }
    
    .navbar-control-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
        min-width: 38px;
        height: 38px;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        min-width: 38px;
        height: 38px;
    }
    
    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }
    
    .navbar-mobile-controls {
        gap: 0.4rem;
    }
}

@media (max-width: 384px) {
    .navbar-logo {
        height: 200px;
        left: -30px;
    }
    
    .navbar-control-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.85rem;
        min-width: 36px;
        height: 36px;
    }
    
    .navbar-toggler {
        padding: 0.35rem 0.5rem;
        min-width: 36px;
        height: 36px;
    }
    
    .navbar-toggler-icon {
        width: 16px;
        height: 16px;
    }
}

/* Theme Toggle & Language Buttons */
.theme-toggle,
.lang-toggle {
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-right: 4px;
}

.lang-dropdown {
    flex-shrink: 0;
    margin-right: 4px;
}

/* Slider Styles */
.slider-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Notice Banner */
.notice-banner-wrapper {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    max-width: 90%;
    width: auto;
    padding: 0;
}

.notice-banner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(10px, 2vw, 14px) clamp(15px, 3vw, 25px);
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.notice-banner-content {
    color: white;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.5vw, 10px);
    text-align: center;
    line-height: 1.4;
    /*flex-wrap: wrap;*/
}

.notice-banner-icon {
    color: #07bff4;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    flex-shrink: 0;
}

@media (max-width: 580px) {
    .notice-banner-wrapper {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        top: 30px;
    }
}

@media (max-width: 500px) {
    .notice-banner-wrapper {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        top: 5px;
    }

    .slider-content {
        top: 55% !important;
    }
}

/* Slider Content */
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    z-index: 10;
    /*max-width: 900px;*/
}

.slider-title {
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    margin-bottom: 15px;
    line-height: 1.1;
}

.slider-subtitle {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #07bff4;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 25px;
    line-height: 1.1;
}

.slider-description {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    margin-bottom: 35px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slider-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-btn {
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    padding: clamp(0.5rem, 2vw, 0.85rem) clamp(1rem, 3vw, 1.75rem);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.slider-btn-primary {
    background: #07bff4;
    border-color: #07bff4;
    color: white;
}

.slider-btn-primary:hover {
    background: #07bff4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.slider-btn-secondary {
    background: white;
    color: #333;
    border: 2px solid white;
}

.slider-btn-secondary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}


/* Main Content - NO TOP MARGIN */
main {
    margin-top: 0;
    padding-top: 0;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero .lead {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-size: 1.3rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

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

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

/* Slider Carousel - RESPONSIVE FULLSCREEN */
#slider-carousel {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh;
    width: 100%;
    position: relative;
}

#slider-carousel .carousel-inner {
    height: 100vh;
    width: 100%;
}

#slider-carousel .carousel-item {
    height: 100vh !important;
    background-size: cover;
    background-position: center;
    width: 100%;
}

/* Position carousel controls at bottom corners */
#slider-carousel .carousel-control-prev,
#slider-carousel .carousel-control-next {
    position: absolute;
    z-index: 15;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 15px 25px;
    transition: background 0.3s ease;
    top: auto;
    bottom: 30px;
    transform: none;
}

#slider-carousel .carousel-control-prev {
    left: 15px;
    right: auto;
}

#slider-carousel .carousel-control-next {
    right: 15px;
    left: auto;
}

@media (max-width: 768px) {
    #slider-carousel .carousel-control-prev {
        left: 10px;
    }

    #slider-carousel .carousel-control-next {
        right: 10px;
    }
}

#slider-carousel .carousel-control-prev:hover,
#slider-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.6);
}

#slider-carousel .carousel-control-prev-icon,
#slider-carousel .carousel-control-next-icon {
    display: inline-block;
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar-brand {
        font-size: 0.95rem;
    }

    /*.navbar-brand img {
        height: 32px;
        width: 32px;
    }*/

    #slider-carousel h1 {
        font-size: 3rem;
    }

    #slider-carousel p {
        font-size: 1.2rem;
    }

    #slider-carousel .carousel-caption {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 0.85rem;
    }

    /*.navbar-brand img {*/
    /*    height: 28px;*/
    /*    width: 28px;*/
    /*}*/

    #slider-carousel {
        height: 70vh;
        margin-bottom: 2rem;
    }

    #slider-carousel .carousel-inner {
        height: 70vh;
    }

    #slider-carousel .carousel-item {
        height: 70vh !important;
    }

    #slider-carousel h1 {
        font-size: 2rem;
    }

    #slider-carousel p {
        font-size: 1rem;
    }

    #slider-carousel .carousel-caption {
        padding: 20px;
        width: 95%;
    }

    #slider-carousel .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem !important;
    }

    /* Call to Action - Smaller on Mobile */
    section[style*="linear-gradient"] {
        padding: 2rem 1rem !important;
        border-radius: 5px !important;
        margin-bottom: 1.5rem !important;
    }

    section[style*="linear-gradient"] h2 {
        font-size: 1.3rem !important;
    }

    section[style*="linear-gradient"] p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 0.75rem;
    }

    .navbar-brand img {
       left: -30px;
    }

    #slider-carousel {
        height: 60vh;
        margin-bottom: 1.5rem;
    }

    #slider-carousel .carousel-inner {
        height: 60vh;
    }

    #slider-carousel .carousel-item {
        height: 60vh !important;
    }

    #slider-carousel h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    #slider-carousel p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    #slider-carousel .carousel-caption {
        padding: 15px;
        width: 98%;
    }

    #slider-carousel .btn-lg {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem !important;
    }

    /* Call to Action - Even Smaller on Small Mobile */
    section[style*="linear-gradient"] {
        padding: 1.5rem 0.75rem !important;
        border-radius: 3px !important;
        margin-bottom: 1rem !important;
    }

    section[style*="linear-gradient"] h2 {
        font-size: 1.1rem !important;
    }

    section[style*="linear-gradient"] p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 384px) {
    .navbar-brand {
        font-size: 0.75rem;
    }

    .navbar-brand img {
        left: -30px;
        height: 175px;
    }
}

/* Container - NORMAL spacing */
.container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: white;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-card {
    position: relative;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease !important;
    z-index: 10;
    pointer-events: none;
}

/* Footer */
.site-footer {
    margin-top: 50px;
    padding: 3rem 0 2rem;
    background: var(--navbar-bg);
    color: #ffffff;
    transition: background 0.3s ease;
}

.footer-logo {
    /*height: 80px;*/
    width: 200px;
    margin-bottom: 1rem;
}

.footer-heading {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-text {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #ffffff;
    margin-right: 10px;
    margin-top: 4px;
    min-width: 16px;
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.footer-icon {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-divider {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    height: 1px;
    margin: 2rem 0;
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Dark Mode Footer */
[data-bs-theme="dark"] .site-footer {
    background: var(--navbar-bg);
}

/* Form Elements */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 199, 159, 0.25);
}

/* Dark Mode Form */
[data-bs-theme="dark"] .form-control {
    background-color: #2d2d2d;
    border-color: #444444;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .form-select {
    background-color: #2d2d2d;
    border-color: #444444;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .form-label {
    color: #e0e0e0;
}

/* Table Dark Mode */
[data-bs-theme="dark"] .table {
    color: #e0e0e0;
    border-color: #444444;
}

[data-bs-theme="dark"] .table-light {
    background-color: #2d2d2d;
}

/* Alert Dark Mode */
[data-bs-theme="dark"] .alert {
    background-color: #2d2d2d;
    border-color: #444444;
}

[data-bs-theme="dark"] .alert-info {
    background-color: #1a3a4a;
    border-color: #00c79f;
    color: #00c79f;
}

[data-bs-theme="dark"] .alert-success {
    background-color: #1f4f2f;
    border-color: #48c774;
}

[data-bs-theme="dark"] .alert-danger {
    background-color: #5f1f2f;
    border-color: #f14668;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Form Elements */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-label {
    font-weight: 600;
    color: #333;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline .row {
    position: relative;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}


/* ============================================
   LEISTUNGEN PAGE - BEM METHODOLOGY
   ============================================ */

/* Page Header */
.leistungen-header {
    margin-bottom: 3rem;
}

.leistungen-header__title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
}

.leistungen-header__subtitle {
    color: #666;
    font-size: 1.05rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Leistung Card Component */
.leistung-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

/* Number Badge */
.leistung-card__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 45px;
    height: 45px;
    background: #2d2d2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Header (Icon + Title Row) */
.leistung-card__header {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

/* Icon Box */
.leistung-card__icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #e7f5ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.leistung-card__icon-box i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Title */
.leistung-card__title {
    flex-grow: 1;
    margin: 0;
    font-weight: 700;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* Subtitle */
.leistung-card__subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* List */
.leistung-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leistung-card__list-item {
    color: #666;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.leistung-card__list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* CTA Section */
.leistungen-cta {
    padding: 2rem 0;
}

.btn-cta {
    display: inline-block;
    background: #333;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(7, 191, 244, 0.3);
}

/* Responsive - Leistungen */
@media (max-width: 768px) {
    .leistungen-header__title {
        font-size: 2rem;
    }
    
    .leistungen-header__subtitle {
        font-size: 0.95rem;
    }
    
    .leistung-card {
        padding: 1.5rem;
        margin-top: 25px;
    }
    
    .leistung-card__badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: -10px;
    }
    
    .leistung-card__title {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .leistungen-header__title {
        font-size: 1.75rem;
    }
    
    .leistung-card {
        padding: 1.25rem;
    }
    
    .leistung-card__icon-box {
        width: 45px;
        height: 45px;
        margin-right: 0.75rem;
    }
    
    .leistung-card__icon-box i {
        font-size: 1.2rem;
    }
    
    .btn-cta {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Dark Mode Support */
[data-bs-theme="dark"] .leistungen-header__title {
    color: #e0e0e0;
}

[data-bs-theme="dark"] .leistungen-header__subtitle {
    color: #b0b0b0;
}

[data-bs-theme="dark"] .leistung-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .leistung-card__title {
    color: #e0e0e0;
}

[data-bs-theme="dark"] .leistung-card__list-item {
    color: #b0b0b0;
}

[data-bs-theme="dark"] .leistung-card__icon-box {
    background: rgba(7, 191, 244, 0.15);
}


/* ============================================
   SERVICES SECTION - HOME PAGE
   ============================================ */

/* Services Section Header */
.services-section-header {
    margin-bottom: 3rem;
}

.services-section-header__title {
    font-weight: 700;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-section-header__subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Card Component */
.service-card {
    height: 100%;
    background: #f0f8fc;
    border: 1px solid #d1ebf7;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 191, 244, 0.2);
    border-color: var(--primary-color);
}

.service-card__body {
    text-align: left;
}

.service-card__icon-box {
    width: 50px;
    height: 50px;
    background: #d9f0fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card__icon-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card__title {
    font-weight: 700;
    color: #003d5c;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card__description {
    color: #4a6c7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Dark Mode - Services Section */
[data-bs-theme="dark"] .services-section-header__title {
    color: #e0e0e0;
}

[data-bs-theme="dark"] .services-section-header__subtitle {
    color: #b0b0b0;
}

[data-bs-theme="dark"] .service-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .service-card__icon-box {
    background: rgba(7, 191, 244, 0.15);
}

[data-bs-theme="dark"] .service-card__title {
    color: #e0e0e0;
}

[data-bs-theme="dark"] .service-card__description {
    color: #b0b0b0;
}

/* Responsive - Services */
@media (max-width: 992px) {
    .services-section-header__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section-header__title {
        font-size: 1.75rem;
    }
    
    .services-section-header__subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card__title {
        font-size: 1.15rem;
    }
}


/* ============================================
   ABOUT PAGE - NEW DESIGN
   ============================================ */

.about-page {
    padding-top: 2rem;
}

.about-section {
    padding: 4rem 0;
}

.about-section--intro {
    background: var(--bg-color);
}

.about-section--package {
    background: #faf8f5;
}

[data-bs-theme="dark"] .about-section--package {
    background: var(--card-bg);
}

/* Main Title */
.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-title--blue {
    color: var(--primary-color);
}

[data-bs-theme="dark"] .about-title {
    color: #e0e0e0;
}

/* Subtitle */
.about-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Content */
.about-content {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .about-content {
    color: #b0b0b0;
}

/* Benefits Box */
.benefits-box {
    background: #faf8f5;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

[data-bs-theme="dark"] .benefits-box {
    background: #2d2d2d;
}

.benefits-box__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

[data-bs-theme="dark"] .benefits-box__title {
    color: #e0e0e0;
}

/* Benefits List */
.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(7, 191, 244, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item__icon i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.benefit-item__content {
    flex-grow: 1;
}

.benefit-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

[data-bs-theme="dark"] .benefit-item__title {
    color: #e0e0e0;
}

.benefit-item__desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

[data-bs-theme="dark"] .benefit-item__desc {
    color: #999;
}

/* CTA Box */
.benefits-box__cta {
    background: rgba(7, 191, 244, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
}

.benefits-box__cta p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

[data-bs-theme="dark"] .benefits-box__cta p {
    color: #e0e0e0;
}

/* Package Badge */
.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(7, 191, 244, 0.1);
    border: 1px solid rgba(7, 191, 244, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.package-badge i {
    color: var(--primary-color);
}

.package-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Checklist Section */
.checklist-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
}

[data-bs-theme="dark"] .checklist-section {
    background: #1a1a1a;
    border-color: #333;
}

.checklist-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-title::before {
    content: '||';
    color: var(--primary-color);
    font-weight: 700;
}

[data-bs-theme="dark"] .checklist-title {
    color: #e0e0e0;
}

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

.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.checklist__item i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

[data-bs-theme="dark"] .checklist__item {
    color: #b0b0b0;
}

/* Advantages Box */
.advantages-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

[data-bs-theme="dark"] .advantages-box {
    background: #2d2d2d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.advantages-box__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .advantages-box__title {
    color: #e0e0e0;
}

/* Numbered List */
.numbered-list {
    margin-bottom: 2rem;
}

.numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(7, 191, 244, 0.05);
    border-radius: 10px;
}

.numbered-item__number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.numbered-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

[data-bs-theme="dark"] .numbered-item__text {
    color: #e0e0e0;
}

/* Optional Section */
.optional-section {
    margin-bottom: 1.5rem;
}

.optional-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

[data-bs-theme="dark"] .optional-title {
    color: #e0e0e0;
}

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

.optional-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.optional-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

[data-bs-theme="dark"] .optional-list li {
    color: #b0b0b0;
}

/* Notice Box */
.notice-box {
    background: rgba(7, 191, 244, 0.08);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.notice-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

[data-bs-theme="dark"] .notice-box p {
    color: #b0b0b0;
}

/* Responsive - About Page */
@media (max-width: 991px) {
    .about-title {
        font-size: 2rem;
    }
    
    .benefits-box,
    .advantages-box {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .benefits-box__title,
    .advantages-box__title {
        font-size: 1.25rem;
    }
    
    .benefits-box,
    .advantages-box {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefit-item__icon {
        width: 35px;
        height: 35px;
    }
}


/* ============================================
   NEWS / AKTUELLES SECTION
   ============================================ */

.news-section {
    padding: 4rem 0;
    background: #faf8f5;
}

[data-bs-theme="dark"] .news-section {
    background: var(--bg-color);
}

.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

[data-bs-theme="dark"] .news-header__title {
    color: #e0e0e0;
}

.news-header__subtitle {
    font-size: 1.1rem;
    color: #666;
}

[data-bs-theme="dark"] .news-header__subtitle {
    color: #999;
}

/* News Card */
.news-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

[data-bs-theme="dark"] .news-card {
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .news-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.news-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.news-card__date {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card__date i {
    color: #999;
}

[data-bs-theme="dark"] .news-card__date {
    color: #999;
}

.news-card__tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid;
    white-space: nowrap;
}

.news-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

[data-bs-theme="dark"] .news-card__title {
    color: #e0e0e0;
}

.news-card__excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

[data-bs-theme="dark"] .news-card__excerpt {
    color: #999;
}

.news-card__link {
    font-size: 0.95rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.news-card__link:hover {
    gap: 0.75rem;
    color: var(--primary-color);
}

.news-card__link i {
    font-size: 0.8rem;
}

/* Responsive - News */
@media (max-width: 768px) {
    .news-section {
        padding: 2.5rem 0;
    }
    
    .news-header__title {
        font-size: 2rem;
    }
    
    .news-card {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .news-header__title {
        font-size: 1.75rem;
    }
    
    .news-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* News Detail Page */
.news-detail {
    padding: 3rem 0 4rem;
    background: var(--bg-color);
}

.news-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: gap 0.3s ease;
}

.news-detail__back:hover {
    gap: 0.75rem;
    color: var(--primary-color);
}

.news-detail__article {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
}

[data-bs-theme="dark"] .news-detail__article {
    background: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.news-detail__date {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-bs-theme="dark"] .news-detail__date {
    color: #999;
}

.news-detail__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

[data-bs-theme="dark"] .news-detail__title {
    color: #e0e0e0;
}

.news-detail__content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

[data-bs-theme="dark"] .news-detail__content {
    color: #b0b0b0;
}

.news-detail__content p {
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .news-detail {
        padding: 2rem 0 3rem;
    }
    
    .news-detail__article {
        padding: 1.5rem;
    }
    
    .news-detail__title {
        font-size: 1.5rem;
    }
}


/* ============================================
   PREISE / HONORAR PAGE
   ============================================ */

.preise-page {
    padding-bottom: 4rem;
}

.preise-header {
    text-align: center;
    padding: 4rem 0 3rem;
    background: var(--bg-color);
}

.preise-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .preise-header__title {
    color: #e0e0e0;
}

.preise-header__desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

[data-bs-theme="dark"] .preise-header__desc {
    color: #b0b0b0;
}

/* Main Box */
.preise-box {
    background: #faf8f5;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: -1rem;
}

[data-bs-theme="dark"] .preise-box {
    background: var(--card-bg);
}

.preise-box__header {
    text-align: center;
    margin-bottom: 2rem;
}

.preise-box__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

[data-bs-theme="dark"] .preise-box__title {
    color: #e0e0e0;
}

.preise-box__subtitle {
    font-size: 1rem;
    color: #666;
}

[data-bs-theme="dark"] .preise-box__subtitle {
    color: #999;
}

/* Feature Boxes */
.preise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.preise-feature {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .preise-feature {
    background: #2d2d2d;
}

.preise-feature__icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(7, 191, 244, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preise-feature__icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.preise-feature__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

[data-bs-theme="dark"] .preise-feature__title {
    color: #e0e0e0;
}

.preise-feature__desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

[data-bs-theme="dark"] .preise-feature__desc {
    color: #999;
}

/* Bottom Box */
.preise-bottom {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .preise-bottom {
    background: #2d2d2d;
}

.preise-bottom__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

[data-bs-theme="dark"] .preise-bottom__title {
    color: #e0e0e0;
}

.preise-bottom__desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

[data-bs-theme="dark"] .preise-bottom__desc {
    color: #999;
}

.preise-bottom__badge {
    text-align: right;
    flex-shrink: 0;
}

.preise-bottom__badge-small {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
}

.preise-bottom__badge-large {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

/* CTA Section */
.preise-cta {
    text-align: center;
    padding: 3rem 0 0;
}

.preise-cta__text {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

[data-bs-theme="dark"] .preise-cta__text {
    color: #b0b0b0;
}

.preise-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #333;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, gap 0.3s ease;
}

.preise-cta__btn:hover {
    background: var(--primary-color);
    color: white;
    gap: 0.75rem;
}

/* Responsive - Preise */
@media (max-width: 768px) {
    .preise-header {
        padding: 3rem 0 2rem;
    }
    
    .preise-header__title {
        font-size: 2rem;
    }
    
    .preise-box {
        padding: 1.5rem;
    }
    
    .preise-features {
        grid-template-columns: 1fr;
    }
    
    .preise-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .preise-bottom__badge {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .preise-header__title {
        font-size: 1.75rem;
    }
    
    .preise-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .preise-feature__icon {
        margin: 0 auto;
    }
}
