/* Custom CSS for PlanB Website */
/* Modern Navy Blue Design - Rotes Logo als Akzent */

:root {
    /* Primary Navy Blue Palette - Dunkles Blau als Basis */
    --primary-50: #f0f4f8;
    --primary-100: #d9e2ec;
    --primary-200: #bcccdc;
    --primary-300: #9fb3c8;
    --primary-400: #829ab1;
    --primary-500: #627d98;
    --primary-600: #486581;
    --primary-700: #334e68;
    --primary-800: #243b53;
    --primary-900: #102a43;
    --primary-950: #0a1929;
    
    /* Main Colors */
    --primary-color: var(--primary-700);
    --primary-dark: var(--primary-900);
    --primary-light: var(--primary-400);
    --primary-gradient: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 40%, var(--primary-700) 70%, var(--primary-600) 100%);
    --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    --orange-gradient: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    --accent-gradient: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    
    /* Logo Rot als Akzentfarbe */
    --logo-red: #dc2626;
    --logo-red-light: #ef4444;
    --logo-red-dark: #b91c1c;
    
    /* Supporting Colors - Dezentes Blau als Akzentfarbe */
    --secondary-color: #64748b;
    --accent-color: #2563eb;
    --accent-light: #3b82f6;
    --accent-dark: #1e40af;
    --accent-hover: #2563eb;
    --success-color: var(--logo-red);
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Neutral Colors */
    --dark-color: #1f2937;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 50%, var(--primary-800) 100%) !important;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-color);
    padding: 1rem 0;
    z-index: 1000;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.navbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.navbar .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.navbar.scrolled {
    background: rgba(36, 59, 83, 0.98) !important;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--accent-color);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white) !important;
    transition: all var(--transition-base);
    z-index: 1001;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
}

.navbar-brand:hover {
    color: var(--primary-200) !important;
    transform: scale(1.05);
}

.brand-text {
    display: inline;
}

.navbar-logo {
    height: 80px;
    width: auto;
    min-width: 0;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all var(--transition-base);
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0.95;
    flex-shrink: 1;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Desktop Menu */
.desktop-menu {
    display: none;
}

.desktop-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-nav-item {
    position: relative;
}

.desktop-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.desktop-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.desktop-nav-link:hover::before {
    width: 80%;
}

.desktop-nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.desktop-nav-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.desktop-nav-link:hover .desktop-nav-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-light);
}

.desktop-nav-text {
    white-space: nowrap;
}

.desktop-nav-cta {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.desktop-nav-cta::before {
    display: none;
}

.desktop-nav-cta:hover {
    background: var(--orange-gradient);
    color: var(--white);
    border-color: var(--accent-light);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.desktop-nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.desktop-nav-link.active::before {
    width: 80%;
}

/* Mobile Menu Dropdown */
.mobile-menu-wrapper {
    position: relative;
    display: none;
}

.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover,
.mobile-menu-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.mobile-menu-btn i {
    font-size: 1.2rem;
}

.mobile-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    overflow: hidden;
}

.mobile-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
    width: 24px;
    text-align: center;
}

.mobile-menu-item:hover {
    background: var(--primary-50);
    color: var(--accent-color);
    padding-left: 2rem;
}

.mobile-menu-item:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

/* Mobile Navigation right aligned */
.mobile-nav-inline {
    display: none;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    overflow: visible;
    margin-left: auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    padding: 0.4rem 0.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    gap: 0.25rem;
    flex: 0 0 60px;
    box-sizing: border-box;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-nav-item:hover::before,
.mobile-nav-item.active::before {
    opacity: 1;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    color: var(--white);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.mobile-nav-label {
    font-size: 0.65rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-nav-item:hover i,
.mobile-nav-item.active i {
    transform: scale(1.1);
}

.mobile-nav-item:hover .mobile-nav-label,
.mobile-nav-item.active .mobile-nav-label {
    color: var(--white);
}

/* Legacy Mobile Top Nav - hidden */
.mobile-top-nav {
    display: none !important;
}

.mobile-nav-container {
    display: none;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 120vh;
    min-height: 800px;
    background: var(--primary-gradient);
    background-image: url('../images/alle/f7559acc-70cd-4456-adf5-06101a30751e.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    margin-top: 0;
    padding-top: 10px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(51, 78, 104, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.65) 0%, 
        rgba(36, 59, 83, 0.55) 50%,
        rgba(51, 78, 104, 0.5) 100%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -3%;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-section .row {
    align-items: flex-start !important;
    padding-top: 0;
}

.hero-logo-wrapper {
    animation: fadeInDown 1s ease-out;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    backdrop-filter: none;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem !important;
}

.hero-logo {
    max-width: 500px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-base);
    opacity: 0.95;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem !important;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-bottom: 1.5rem !important;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--primary-900);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    max-height: 4rem;
    min-height: 3.5rem;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-900);
    text-decoration: none;
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.hero-badge:hover i {
    color: var(--accent-dark);
    transform: scale(1.1);
}

.concorde-logo-icon {
    height: 2rem;
    max-height: 2rem;
    width: auto;
    margin-right: 0.75rem;
    flex-shrink: 0;
    opacity: 0.95;
    transition: all var(--transition-base);
    object-fit: contain;
}

/* JPG-Logo */
.concorde-logo-jpg {
    opacity: 0.95 !important;
}

/* Concorde Logo größer */
.concorde-logo-size {
    height: 2.2rem !important;
    max-height: 2.2rem !important;
}

.hero-badge:hover .concorde-logo-icon {
    opacity: 1;
    transform: scale(1.1);
}

.concorde-fallback-icon {
    display: inline-block;
}

.dometic-logo-icon {
    height: 1.5rem !important;
    max-height: 1.5rem !important;
}

.hero-call-wrapper {
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-top: 1rem;
    margin-bottom: 1.5rem !important;
    padding: 1rem 0.75rem;
}

.hero-call-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all var(--transition-base);
}

.hero-call-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--orange-gradient);
    opacity: 0.08;
    border-radius: var(--radius-xl);
    z-index: 0;
}

.hero-call-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-light);
}

.hero-call-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.hero-call-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    opacity: 0.4;
    filter: blur(12px);
    z-index: -1;
    animation: pulse 2s infinite;
}

.hero-call-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.hero-call-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-call-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-call-number {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-call-number:hover {
    color: var(--accent-light);
    transform: scale(1.05);
    text-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
}

.hero-call-number i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.hero-call-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    margin: 0;
    font-style: italic;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 1s both;
    margin-bottom: 0.5rem;
}

.hero-cta .btn {
    backdrop-filter: blur(10px);
}

.hero-cta .btn-primary {
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--primary-900);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    color: var(--primary-900);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-outline-light {
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--primary-900);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    color: var(--primary-900);
}

.hero-cta .btn i {
    color: var(--accent-color);
}

.hero-cta .btn:hover i {
    color: var(--accent-dark);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: relative;
    margin-top: 1.5rem;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator a {
    color: #fff;
    font-size: 2.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    margin: 0 auto;
}

.scroll-indicator a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--orange-gradient);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.35);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.no-title-border::after {
    display: none;
}

/* About Section - Larger Text */
.about-intro {
    font-size: 1.4rem !important;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    color: var(--gray-700);
}

.help-you-text {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--gray-700);
    text-align: left;
}

.about-strong {
    font-size: 1.3rem;
    color: var(--accent-color);
    text-align: left;
    display: block;
}

.about-list {
    font-size: 1.1rem;
    line-height: 2;
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.about-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.about-list i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-alert {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: rgba(51, 78, 104, 0.05);
    border-radius: var(--radius-md);
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-alert i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.about-alert strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    display: inline;
}

/* Statistics */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 5px;
    font-weight: 500;
}

/* Car Cards */
.car-card {
    transition: all var(--transition-base);
    border: none;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
}

.car-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.car-image {
    transition: all var(--transition-base);
    background: var(--primary-gradient) !important;
    position: relative;
    overflow: hidden;
}

.car-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.car-card:hover .car-image {
    transform: scale(1.08);
}

.car-card:hover .car-image::before {
    left: 100%;
}

.car-card .card-body {
    padding: 1.5rem;
}

.car-card .badge {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    padding: 2rem 1.75rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.service-card-header:hover {
    background-color: rgba(51, 78, 104, 0.03);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2.5rem;
    background: var(--orange-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35), 0 2px 4px rgba(59, 130, 246, 0.25);
}

.service-card-header:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h5 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.service-toggle-btn {
    background: transparent;
    border: 2px solid var(--primary-600);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 0;
    transition: all var(--transition-base);
    color: var(--primary-600);
}

.service-toggle-btn:hover {
    background: var(--primary-600);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--accent-hover);
}

.service-toggle-btn i {
    font-size: 1.2rem;
    transition: transform var(--transition-base);
}

.service-card-header.active .service-toggle-btn i {
    transform: rotate(180deg);
}

.service-card-header.active .service-toggle-btn {
    background: var(--primary-600);
    color: var(--white);
    border-color: var(--accent-hover);
}

.service-card-header.active {
    background-color: rgba(51, 78, 104, 0.06);
}

.service-details-panel-wrapper {
    margin-top: 2rem;
}

/* Mobile vs Desktop Panels */
.service-panel-mobile {
    display: none;
}

.service-panel-desktop {
    display: block;
}

.partner-panel-mobile {
    display: none;
}

.partner-panel-desktop {
    display: block;
}

@media (max-width: 768px) {
    .service-panel-mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .service-panel-desktop {
        display: none !important;
    }
    
    .service-card {
        margin-bottom: 0;
    }
    
    .service-card.h-100 {
        height: auto !important;
    }
    
    .service-panel-mobile .service-details-panel-wrapper {
        margin-top: 1rem;
    }
    
    .partner-panel-mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .partner-panel-desktop {
        display: none !important;
    }
    
    .partner-panel-mobile .partner-details-panel-wrapper {
        margin-top: 1rem;
    }
}

.service-details-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(51, 78, 104, 0.1), 0 4px 10px rgba(59, 130, 246, 0.2);
}

.service-details-panel h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-details-panel h4 i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-details-panel p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .service-card-header {
        padding: 1.25rem;
    }
    
    .service-details-panel {
        padding: 1.5rem;
    }
    
    .service-details-panel h4 {
        font-size: 1.25rem;
    }
    
    .service-details-panel p {
        font-size: 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-toggle-btn {
        width: 36px;
        height: 36px;
        margin-top: 0.75rem !important;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.scroll-to-top-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Contact Form */
.contact-info {
    padding: 2rem;
    transition: all var(--transition-base);
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-base);
}

.contact-info:hover i {
    transform: scale(1.1);
}

.contact-info a {
    color: var(--gray-600);
    transition: all var(--transition-base);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Buttons */
.btn {
    transition: all var(--transition-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--orange-gradient);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35), 0 2px 4px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.45), 0 4px 8px rgba(59, 130, 246, 0.35);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--orange-gradient);
    border-color: transparent;
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-700);
    border-color: var(--white);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Form Controls */
.form-control {
    border-radius: var(--radius);
    border: 2px solid var(--gray-300);
    padding: 12px 15px;
    transition: all var(--transition-base);
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(51, 78, 104, 0.1);
    outline: none;
    background-color: var(--white);
}

.form-control:hover {
    border-color: var(--primary-400);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    margin-top: 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%) !important;
    border-top: 2px solid var(--accent-color);
}

footer .container {
    display: flex;
    justify-content: center;
}

footer .row {
    width: 100%;
    justify-content: center;
}

footer h5 {
    color: var(--white);
    font-weight: 700;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer .col-lg-8 {
    margin-left: auto;
    margin-right: auto;
}

footer a {
    transition: all var(--transition-base);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    display: inline-block;
}

footer a:hover {
    color: var(--primary-300) !important;
    transform: translateY(-3px) scale(1.1);
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .desktop-menu {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-wrapper {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-nav-inline {
        display: flex;
    }
    
    .mobile-menu-wrapper {
        display: none;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-row {
        padding-top: 1.25rem;
    }
    
    .navbar-brand {
        font-size: 1.15rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
        flex: 0 1 auto;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .brand-text {
        display: inline;
        font-size: 1rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .navbar-logo {
        height: 70px;
        min-width: 0;
        max-width: 100%;
        padding: 0;
        flex-shrink: 1;
    }
    
    .navbar-brand i {
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .navbar-left {
        gap: 0.75rem;
        min-width: 0;
        flex: 1;
        overflow: visible;
    }
    
    .mobile-nav-item {
        width: 70px;
        min-width: 70px;
        max-width: 70px;
        padding: 0.5rem 0.4rem;
        gap: 0.3rem;
        flex: 0 0 70px;
        box-sizing: border-box;
    }
    
    .mobile-nav-item i {
        font-size: 1.3rem;
    }
    
    .mobile-nav-label {
        font-size: 0.7rem;
    }
    
    .mobile-nav-inline {
        gap: 0.4rem;
        margin-right: 0.5rem;
        flex-shrink: 0;
        max-width: fit-content;
    }
    
    /* Add padding to body for navbar */
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        min-height: calc(100vh - 70px);
        max-height: none;
        height: auto;
        padding-top: 0;
        padding-bottom: 30px;
        background-attachment: scroll;
        margin-top: 0;
        overflow: visible;
        display: flex;
        align-items: flex-start;
    }
    
    .hero-section .container {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .hero-section .row {
        align-items: flex-start !important;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        max-height: 3rem;
        min-height: 3rem;
    }
    
    /* Logos auf Mobile */
    .concorde-logo-icon {
        height: 1.5rem !important;
        max-height: 1.5rem !important;
        margin-right: 0.6rem;
    }
    
    .concorde-logo-size {
        height: 1.7rem !important;
        max-height: 1.7rem !important;
    }
    
    .dometic-logo-icon {
        height: 1.2rem !important;
        max-height: 1.2rem !important;
    }
    
    .hero-badge img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-call-wrapper {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-call-box {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .hero-call-icon {
        width: 80px;
        height: 80px;
    }
    
    .hero-call-icon i {
        font-size: 2rem;
    }
    
    .hero-call-content {
        text-align: center;
    }
    
    .hero-call-text {
        font-size: 1rem;
    }
    
    .hero-call-number {
        font-size: 1.5rem;
    }
    
    .hero-call-note {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        min-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
    }
    
    .hero-cta .btn.me-3 {
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 4px;
    }
    
    .about-intro {
        font-size: 1.2rem !important;
    }
    
    .about-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .about-strong {
        font-size: 1.2rem;
    }
    
    .about-list {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-alert {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
        width: 100%;
    }
    
    .about-alert i {
        font-size: 1.3rem;
        margin-right: 0.5rem;
    }
    
    .about-alert strong {
        font-size: 1.15rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    /* Menu Responsive */
    .menu-link {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
    
    .menu-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .menu-nav {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .menu-footer {
        margin-top: 2rem;
    }
    
    .menu-footer-text {
        font-size: 1rem;
    }
    
    .menu-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: calc(100vh - 65px);
        max-height: none;
        height: auto;
        padding: 0;
        padding-bottom: 20px;
        overflow: visible;
        display: flex;
        align-items: flex-start;
    }
    
    .hero-section .container {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    
    .hero-section .row {
        align-items: flex-start !important;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 0.5rem !important;
    }
    
    .hero-logo {
        max-width: 180px;
    }
    
    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 0.25rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem !important;
        line-height: 1.3;
    }
    
    .hero-badges {
        margin-bottom: 0.5rem !important;
        gap: 0.4rem !important;
        padding: 0 0.75rem !important;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 0 !important;
        line-height: 1.2;
    }
    
    .concorde-logo-icon {
        height: 1.2rem !important;
        max-height: 1.2rem !important;
        margin-right: 0.5rem;
    }
    
    .concorde-logo-size {
        height: 1.4rem !important;
        max-height: 1.4rem !important;
    }
    
    .dometic-logo-icon {
        height: 1rem !important;
        max-height: 1rem !important;
    }
    
    .hero-call-wrapper {
        padding: 0.5rem 0.25rem;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-call-box {
        padding: 0.75rem 0.6rem;
        gap: 0.6rem;
    }
    
    .hero-call-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-call-icon i {
        font-size: 1.25rem;
    }
    
    .hero-call-text {
        font-size: 0.75rem;
        margin-bottom: 0.35rem !important;
        line-height: 1.3;
    }
    
    .hero-call-number {
        font-size: 1rem;
    }
    
    .hero-call-note {
        font-size: 0.65rem;
    }
    
    .hero-cta {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        padding: 0 0.75rem;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 260px;
        min-width: 180px;
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .hero-cta .btn.me-3 {
        margin-right: 0 !important;
        margin-bottom: 0.4rem;
    }
    
    .scroll-indicator {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .car-card {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile Navigation Small Screens */
    .navbar {
        padding: 0.65rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
        max-width: none;
        flex: 0 1 auto;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .brand-text {
        font-size: 0.9rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .navbar-logo {
        height: 40px;
        min-width: 0;
        max-width: 100%;
        padding: 0;
        flex-shrink: 1;
    }
    
    .navbar-brand i {
        font-size: 1.3rem;
    }
    
    .navbar-left {
        gap: 0.6rem;
        overflow: visible;
    }
    
    .mobile-nav-inline {
        gap: 0.25rem;
    }
    
    .mobile-nav-item {
        width: 42px;
        min-width: 42px;
        max-width: 42px;
        padding: 0.3rem 0.2rem;
        gap: 0.1rem;
        flex: 0 0 42px;
        box-sizing: border-box;
    }
    
    .mobile-nav-item i {
        font-size: 0.95rem;
    }
    
    .mobile-nav-label {
        font-size: 0.55rem;
        line-height: 1;
    }
    
    .mobile-nav-inline {
        gap: 0.2rem;
        margin-right: 0.5rem;
    }
    
    body {
        padding-top: 70px;
    }
    
    /* Menu Mobile */
    .menu-link {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
    }
    
    .menu-text {
        font-size: 1rem;
    }
    
    .menu-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .menu-item {
        margin-bottom: 0.8rem;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Active Navigation Link */
.menu-link.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Background Sections */
.bg-light {
    background-color: var(--light-bg) !important;
}

/* Additional Modern Elements */
.text-primary {
    color: var(--primary-600) !important;
}

.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

.badge.bg-success {
    background: var(--primary-gradient) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
}

/* Price Styling */
.h5.text-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}

/* Partner Logos */
/* Partner Cards */
.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.partner-card-header {
    padding: 1.5rem;
    text-align: center;
    cursor: default;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    flex: 1;
    gap: 0.75rem;
}

.partner-card-header:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
    display: block;
}

.partner-logo[src*="default-partner-logo.svg"] {
    filter: grayscale(0%);
    opacity: 0.6;
    color: var(--primary-600);
}

.partner-card-header:hover .partner-logo[src*="default-partner-logo.svg"] {
    opacity: 0.9;
    color: var(--primary-700);
}

/* Truma Logo - weiß zu schwarz konvertieren */
.partner-logo[src*="truma-logo"] {
    filter: brightness(0);
    opacity: 1;
}

.partner-card-header:hover .partner-logo[src*="truma-logo"] {
    filter: brightness(0);
    opacity: 1;
}


.partner-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-700);
    margin: 0;
    text-align: center;
}

.partner-toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-300);
    background: var(--white);
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.75rem auto 0;
    transition: all var(--transition-base);
    cursor: pointer;
}

.partner-toggle-btn:hover {
    background: var(--primary-600);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--accent-hover);
}

.partner-toggle-btn i {
    font-size: 1rem;
    transition: transform var(--transition-base);
}

.partner-card-header.active .partner-toggle-btn i {
    transform: rotate(180deg);
}

.partner-card-header.active .partner-toggle-btn {
    background: var(--primary-600);
    color: var(--white);
    border-color: var(--accent-hover);
}

.partner-card-header.active {
    background-color: rgba(37, 99, 235, 0.05);
}

.partner-details-panel-wrapper {
    margin-top: 0;
}

.partner-details-panel {
    background: var(--white);
    border-top: 2px solid var(--accent-color);
    padding: 2rem;
    box-shadow: 0 -4px 10px rgba(51, 78, 104, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-details-panel h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.partner-details-logo {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    flex-shrink: 0;
}

.partner-details-panel p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.partner-details-panel .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 768px) {
    /* Partner-Karten: 1 Karte pro Zeile auf Mobile */
    .row.g-4 > .col-6.col-md-4.col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .partner-card-header {
        min-height: 120px;
        padding: 1rem;
    }
    
    .partner-logo {
        max-height: 60px;
    }
    
    .partner-details-panel {
        padding: 1.5rem;
    }
    
    .partner-details-panel h4 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .partner-details-logo {
        max-width: 100px;
        max-height: 35px;
    }
    
    .partner-details-panel p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all var(--transition-base);
    display: block;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .gallery-image {
        height: 250px;
    }
}

/* Gallery Hidden Items */
.gallery-item-hidden {
    display: none;
}

.gallery-item-hidden.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    z-index: 10000;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 16px;
        padding: 8px 16px;
    }

    .lightbox-image {
        max-height: 90vh;
    }
}

@media (max-width: 576px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
        padding: 12px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }
}