/* ===========================
   Local Fonts (DSGVO-konform)
   =========================== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/Inter-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/PlayfairDisplay-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/PlayfairDisplay-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/PlayfairDisplay-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
}

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

:root {
    /* Premium Colors */
    --primary-blue: #0C4DA2;
    --primary-blue-dark: #083470;
    --primary-blue-light: #1a5bb8;
    --accent-green: #65BC7B;
    --accent-green-light: #7dd495;
    --accent-gold: #D4AF37;
    --text-dark: #0a0a0a;
    --text-medium: #3a3a3a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f7f8fa;
    --bg-dark: #0f1419;
    --border-light: #e8eaed;

    /* Typography - Premium Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Luxurious Spacing */
    --section-padding: 140px;
    --container-padding: 48px;
    --container-max-width: 1440px;

    /* Premium Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-quick: all 0.2s ease;
    --transition-luxury: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Premium Shadows */
    --shadow-sm: 0 2px 12px rgba(12, 77, 162, 0.06);
    --shadow-md: 0 8px 24px rgba(12, 77, 162, 0.10);
    --shadow-lg: 0 16px 48px rgba(12, 77, 162, 0.14);
    --shadow-xl: 0 24px 64px rgba(12, 77, 162, 0.18);
    --shadow-luxury: 0 32px 80px rgba(12, 77, 162, 0.22);
    --shadow-hero: 0 40px 100px rgba(12, 77, 162, 0.30);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(20px);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    white-space: nowrap;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

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

.header-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

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

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

.btn-secondary {
    background-color: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ===========================
   Hero Section
   =========================== */
/* ===========================
   MINIMALIST HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a3d7a 0%, #051f3e 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.75) 0%, rgba(8, 52, 112, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-cta {
    margin-bottom: 60px;
}

.cta-notice {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-phone {
    display: inline-block;
    font-size: 2.25rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.hero-phone:hover {
    color: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-hero {
    padding: 18px 48px;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.btn-hero.primary {
    background: white;
    color: var(--primary-blue);
    border: none;
}

.btn-hero.primary:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(101, 188, 123, 0.4);
}

.btn-hero.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-hero.secondary:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    transform: translateY(-2px);
}

/* ===========================
   Praxis Section
   =========================== */
.praxis-section {
    background-color: var(--bg-white);
}

.praxis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.praxis-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

.praxis-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.praxis-greeting {
    font-style: italic;
    margin-top: 28px !important;
    color: var(--primary-blue);
}

.praxis-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.praxis-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.praxis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* ===========================
   Philosophie Section
   =========================== */
.philosophie-section {
    background-color: var(--primary-blue);
    color: white;
}

.philosophie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophie-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophie-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 8px;
    background-color: var(--accent-green);
    z-index: 2;
}

.philosophie-slider .slider-track {
    position: relative;
    height: 400px;
}

.philosophie-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.philosophie-slider .slide.active {
    opacity: 1;
}

.philosophie-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophie-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.philosophie-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.philosophie-slider .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.philosophie-slider .dot.active {
    background: var(--accent-green);
    transform: scale(1.2);
}

.philosophie-text h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 32px;
}

.philosophie-text .text-accent {
    color: var(--accent-green);
    font-style: italic;
}

.philosophie-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 24px;
}

.philosophie-highlight {
    font-size: 1.25rem !important;
    font-style: italic;
    color: var(--accent-green) !important;
    opacity: 1 !important;
    font-weight: 500;
}

/* ===========================
   Leistungen Section
   =========================== */
.leistungen-section {
    background-color: var(--bg-light);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.leistung-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 48px 36px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(12, 77, 162, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(12, 77, 162, 0.08);
    position: relative;
    overflow: hidden;
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.leistung-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(12, 77, 162, 0.15);
    border-color: rgba(12, 77, 162, 0.2);
}

.leistung-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 77, 162, 0.2);
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    min-height: 500px;
}

.leistung-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.leistung-image-card:hover img {
    transform: scale(1.15);
}

.image-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(12, 77, 162, 0.92) 0%, transparent 50%);
    padding: 40px;
    color: white;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.leistung-image-card:hover .image-card-overlay {
    opacity: 1;
}

.image-card-overlay p {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.leistung-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.1), rgba(101, 188, 123, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

.leistung-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.leistung-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===========================
   Team Section
   =========================== */
.team-section {
    background-color: var(--bg-white);
}

.team-hero {
    margin-bottom: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-hero img {
    width: 100%;
    height: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.team-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-title {
    color: var(--text-light);
    font-size: 1rem;
}

/* Team Slider */
.team-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.team-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.team-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.team-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(12, 77, 162, 0.15);
}

.slider-nav:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(12, 77, 162, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav svg {
    color: var(--primary-blue);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.dot:hover {
    background: rgba(12, 77, 162, 0.3);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

/* ===========================
   Kontakt Section
   =========================== */
.kontakt-section {
    background-color: var(--bg-light);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.standort-card {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.standort-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary-blue);
    padding-bottom: 16px;
    border-bottom: 3px solid var(--accent-green);
}

.standort-address {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.standort-contact {
    margin-bottom: 20px;
}

.standort-phone {
    margin-bottom: 4px;
}

.standort-phone a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.standort-phone a:hover {
    color: var(--accent-green);
}

.standort-fax {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.standort-email a {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.standort-email a:hover {
    color: var(--accent-green);
}

.standort-hours {
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.standort-hours .hours-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.standort-hours p {
    color: var(--text-medium);
    line-height: 1.8;
}

.standort-hours strong {
    color: var(--text-dark);
}

.standort-hours .hours-note {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-style: italic;
    margin-top: 12px;
}

.standort-anreise {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.notfall-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 16px;
    padding: 40px 48px;
    color: white;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.notfall-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.notfall-icon {
    flex-shrink: 0;
    color: var(--accent-green);
}

.notfall-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: white;
}

.notfall-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.notfall-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    text-decoration: none;
    transition: var(--transition-quick);
}

.notfall-number:hover {
    color: white;
    transform: scale(1.05);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-quick);
}

.footer-section a:hover {
    color: var(--accent-green);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
        --container-padding: 32px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        padding: 40px 32px;
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }

    .nav.active .nav-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav.active .nav-list li:last-child {
        border-bottom: none;
    }

    .nav.active .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .header-actions.active {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: white;
        padding: 24px 32px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .header-actions.active .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    .praxis-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .praxis-image {
        order: -1;
    }

    .philosophie-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .philosophie-slider {
        order: -1;
    }

    .philosophie-text h3 {
        font-size: 2rem;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-info-bar {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --container-padding: 24px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 60px;
    }

    .hero-phone {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
    }

    .leistungen-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .leistung-card,
    .leistung-image-card {
        width: 100%;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .team-slider-wrapper {
        margin: 40px auto;
    }

    .slider-nav {
        width: 48px;
        height: 48px;
    }

    .slider-prev {
        left: 16px;
    }

    .slider-next {
        right: 16px;
    }

    .standort-card {
        padding: 32px 24px;
    }

    .notfall-banner {
        padding: 32px 24px;
    }

    .notfall-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .header-container {
        padding: 16px var(--container-padding);
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 50px;
    }

    .hero-phone {
        font-size: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .slider-dots {
        margin-top: 24px;
    }

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

    .praxis-text h3 {
        font-size: 1.5rem;
    }

    .praxis-text p {
        font-size: 1rem;
    }

    .leistung-card {
        padding: 32px 24px;
    }

    .leistung-card h3 {
        font-size: 1.25rem;
    }

    .team-member h3 {
        font-size: 1.25rem;
    }

    .standort-card h3 {
        font-size: 1.5rem;
    }

    .notfall-number {
        font-size: 1.5rem;
    }
}

/* ===========================
   Accessibility
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-green);
    outline-offset: 3px;
}

/* ===========================
   LUXURY ENHANCEMENTS
   =========================== */

/* Custom Cursor */
@media (min-width: 993px) {
    body {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4" fill="rgba(12, 77, 162, 0.3)"/><circle cx="12" cy="12" r="2" fill="%230C4DA2"/></svg>') 12 12, auto;
    }

    a, button, .btn {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="6" fill="rgba(101, 188, 123, 0.4)"/><circle cx="12" cy="12" r="3" fill="%2365BC7B"/></svg>') 12 12, pointer;
    }
}


/* Enhanced Navigation Links with Animated Underline */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(12, 77, 162, 0.1) 0%, transparent 70%);
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

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

/* Luxury Button Styles - Better Contrast on Hero */
.hero .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.35);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 1) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.45);
    border-color: #ffffff;
}

.hero .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* Enhanced Hero with Parallax */
.hero::before {
    animation: subtleMove 20s ease-in-out infinite;
    transform-origin: center;
}

@keyframes subtleMove {
    0%, 100% {
        transform: scale(1.05) translateY(0);
    }
    50% {
        transform: scale(1.08) translateY(-10px);
    }
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(12, 77, 162, 0.25) 0%,
        rgba(8, 52, 112, 0.35) 50%,
        rgba(12, 77, 162, 0.25) 100%
    );
}

/* Luxury Card Hover Effects */
.leistung-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-luxury);
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(101, 188, 123, 0.1), transparent);
    transition: left 0.6s ease;
}

.leistung-card:hover::before {
    left: 100%;
}

.leistung-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-luxury);
}

.leistung-card:hover .leistung-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.2), rgba(101, 188, 123, 0.2));
}

.leistung-icon {
    transition: var(--transition-luxury);
}

/* Team Member Luxury Effects */
.team-image {
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 77, 162, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-luxury);
}

.team-image:hover::after {
    opacity: 1;
}

.team-image:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-luxury);
}

/* Enhanced Praxis Section */
.praxis-image {
    position: relative;
}

.praxis-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    opacity: 0.15;
    border-radius: 16px;
    z-index: -1;
    transition: var(--transition-luxury);
}

.praxis-image:hover::before {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    opacity: 0.25;
}

/* Feature Items Enhanced */
.feature-item {
    transition: var(--transition-smooth);
    padding: 8px;
    margin: -8px;
    border-radius: 12px;
}

.feature-item:hover {
    background: rgba(12, 77, 162, 0.03);
    transform: translateX(8px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(12, 77, 162, 0.25);
}

/* Standort Cards Glass Effect */
.standort-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition-luxury);
}

.standort-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--accent-green);
}

/* Notfall Banner Enhanced */
.notfall-banner {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 50%,
        var(--primary-blue) 100%
    );
    position: relative;
    overflow: hidden;
}

.notfall-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(101, 188, 123, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Section Divider Enhanced */
.section-divider {
    background: linear-gradient(90deg, transparent, var(--primary-blue), var(--accent-green), transparent);
    height: 3px;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Scroll Indicator Enhanced */
.scroll-indicator span::before {
    animation: scroll 2s ease-in-out infinite;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(101, 188, 123, 0.8));
}

/* Button Ripple Effect */
.btn {
    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.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Staggered Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leistungen-grid .leistung-card:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s both; }
.leistungen-grid .leistung-card:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s both; }
.leistungen-grid .leistung-card:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s both; }
.leistungen-grid .leistung-card:nth-child(4) { animation: fadeInUp 0.6s ease 0.4s both; }
.leistungen-grid .leistung-card:nth-child(5) { animation: fadeInUp 0.6s ease 0.5s both; }
.leistungen-grid .leistung-card:nth-child(6) { animation: fadeInUp 0.6s ease 0.6s both; }
.leistungen-grid .leistung-card:nth-child(7) { animation: fadeInUp 0.6s ease 0.7s both; }
.leistungen-grid .leistung-card:nth-child(8) { animation: fadeInUp 0.6s ease 0.8s both; }

.team-grid .team-member:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s both; }
.team-grid .team-member:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s both; }
.team-grid .team-member:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s both; }
.team-grid .team-member:nth-child(4) { animation: fadeInUp 0.6s ease 0.4s both; }
.team-grid .team-member:nth-child(5) { animation: fadeInUp 0.6s ease 0.5s both; }
.team-grid .team-member:nth-child(6) { animation: fadeInUp 0.6s ease 0.6s both; }

/* Loading State */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===========================
   PRECISION DETAILS
   =========================== */

/* Employment Badge for Team Members */
.employment-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(101, 188, 123, 0.95), rgba(101, 188, 123, 1));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(101, 188, 123, 0.4);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-member-employed .team-title {
    font-size: 0.95rem;
    color: var(--accent-green);
    font-weight: 500;
}

/* Precise Hours Formatting */
.info-item-hours {
    display: flex;
    gap: 16px;
    align-items: flex-start !important;
}

.hours-content {
    flex: 1;
}

.hours-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    line-height: 1.9;
}

.hours-days {
    font-weight: 600;
    color: var(--primary-blue);
    padding-right: 12px;
    white-space: nowrap;
    vertical-align: top;
}

.hours-times {
    color: var(--text-medium);
}

.hours-appointment {
    color: var(--text-medium);
    font-style: italic;
    margin-top: 4px;
}

/* Button Wrapper for Alignment */
.button-wrapper {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Standort Cards Equal Height */
.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.standort-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.standort-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1;
}

/* Hero Background Image Fix */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero::before {
    opacity: 0.4;
    filter: brightness(1.1) contrast(1.05);
}

/* Precise Icon Alignment */
.info-item svg {
    margin-top: 2px;
}

/* Team Section Subtitle */
.team-section .section-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
}

/* Enhanced Details for Professional Look */
.standort-card h3 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--primary-blue);
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-green);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.info-item div p:first-child {
    font-weight: 500;
}

/* Email Links */
.info-item a[href^="mailto"] {
    word-break: break-word;
    font-size: 0.95rem;
}

/* Phone Links Styling */
.info-item a[href^="tel"] {
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition-quick);
}

.info-item a[href^="tel"]:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Responsive Adjustments for Details */
@media (max-width: 992px) {
    .employment-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 768px) {
    .hours-table {
        font-size: 0.9rem;
    }

    .hours-days {
        display: block;
        margin-bottom: 4px;
    }

    .hours-times {
        display: block;
        padding-left: 0;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   KARRIERE SECTION
   =========================== */
.karriere-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
}

.karriere-content {
    max-width: 700px;
    margin: 0 auto;
}

.karriere-icon {
    margin-bottom: 24px;
}

.karriere-icon svg {
    stroke: var(--accent-green);
}

.karriere-section h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: white;
}

.karriere-section p {
    font-size: 1.125rem;
    margin-bottom: 16px;
    opacity: 0.95;
}

.karriere-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.karriere-section .btn-primary {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.karriere-section .btn-primary:hover {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}

.karriere-section .btn-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.karriere-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* ===========================
   MODAL STYLES
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 77, 162, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-medium);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--bg-medium);
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--accent-green);
}

.modal-body {
    color: var(--text-dark);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.modal-body ul li:last-child {
    border-bottom: none;
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-body strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Card More Info Link */
.card-more-info {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.leistung-card:hover .card-more-info {
    color: var(--accent-green);
    transform: translateX(4px);
}

.leistung-card {
    cursor: pointer;
}

/* Parking/Anreise Title */
.parking-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px !important;
}

.anreise-info {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 4px !important;
}

.hours-note {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-style: italic;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        width: 95%;
        max-height: 90vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.75rem;
    }

    .karriere-section h2 {
        font-size: 1.75rem;
    }

    .karriere-section p {
        font-size: 1rem;
    }

    .karriere-buttons {
        flex-direction: column;
    }

    .karriere-buttons .btn {
        width: 100%;
    }
}

/* ===========================
   FLOATING PARTICLES - WOW EFFECT
   =========================== */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 70%;
    top: 60%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 80%;
    top: 10%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 25%;
    top: 70%;
    animation-delay: 8s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 50%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 28s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(-40px, -30px) scale(1.05);
        opacity: 0.4;
    }
}

/* Enhanced Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .leistungen-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .leistung-card {
        position: relative;
        transform: none !important;
        margin-bottom: 0;
    }

    .leistung-card:hover {
        transform: none !important;
    }

    .leistung-image-card {
        min-height: 250px;
        order: -1;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px auto;
        padding: 24px;
    }
}

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a5f;
    z-index: 10000;
    padding: 14px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner .cookie-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.cookie-banner .cookie-text a {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-text {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.2s;
}

.cookie-btn-text:hover {
    color: white;
}

.cookie-btn-accept {
    background: white;
    color: #1e3a5f;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept:hover {
    background: #f0f0f0;
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 12px 16px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
