/* =============================================
   PHYSIOTHERAPIE PRAXIS HARMONIE HEIDI WEIß
   Hauptstylesheet
   Unternehmensfarben: #1496a0 (Teal) & #ff9004 (Orange/Gold)
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-teal: #1496a0;
    --color-teal-dark: #0e7a82;
    --color-teal-light: #e8f6f7;
    --color-orange: #ff9004;
    --color-orange-dark: #e07800;
    --color-orange-light: #fff4e0;
    --color-dark: #2c3e50;
    --color-text: #3d3d3d;
    --color-text-light: #6b7280;
    --color-white: #ffffff;
    --color-bg: #f9fafb;
    --color-border: #e5e7eb;
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

/* === UTILITIES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-main);
}

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

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

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

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

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

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    /* Weißen Hintergrund ausbleden – Logo wirkt freistehend */
    mix-blend-mode: multiply;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.04);
    filter: brightness(0.92);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--color-teal-light);
    color: var(--color-teal);
}

.nav-cta {
    background: var(--color-teal) !important;
    color: var(--color-white) !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
}

.nav-cta:hover {
    background: var(--color-teal-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* === DROPDOWN LEISTUNGEN === */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    font-family: var(--font-main);
    line-height: 1.7;
}

.nav-dropdown > .nav-dropdown-toggle:hover,
.nav-dropdown > .nav-dropdown-toggle.active {
    background: var(--color-teal-light);
    color: var(--color-teal);
}

.nav-dropdown > .nav-dropdown-toggle .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.open > .nav-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 2000;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: 0;
    transition: var(--transition);
    width: 100%;
}

.nav-dropdown-menu a:hover {
    background: var(--color-teal-light);
    color: var(--color-teal);
    padding-left: 24px;
}

.nav-dropdown-menu a .dropdown-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--color-teal-light);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-dropdown-menu a:hover .dropdown-icon {
    background: var(--color-teal);
    color: var(--color-white);
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: 6px 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding-top: 84px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: 55vh;
}

.hero-text {
    z-index: 1;
    position: relative;
    padding: 60px 80px 60px max(40px, calc((100vw - 1200px) / 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-teal-dark);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-left: 2px;
    text-shadow: none;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: none;
}

.hero-title span {
    color: var(--color-teal);
}

.hero-description {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.7;
    text-shadow: none;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Outline-Button im Hero (auf hellem Hintergrund) */
.hero .btn-outline {
    color: var(--color-teal-dark);
    border-color: var(--color-teal);
    background: transparent;
    backdrop-filter: none;
}

.hero .btn-outline:hover {
    background: var(--color-teal-light);
    border-color: var(--color-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.hero-image {
    z-index: 1;
    position: relative;
    display: block;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.5) 25%, transparent 60%);
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 55vh;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-image-badge .badge-icon {
    width: 48px;
    height: 48px;
    background: var(--color-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.2rem;
}

.hero-image-badge .badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.hero-image-badge .badge-text span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* === STATS SECTION === */
.stats-section {
    background: var(--color-teal);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--color-white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-orange);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* === LEISTUNGEN / SERVICES SECTION === */
.services-section {
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-orange));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-teal-light);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--color-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--color-teal);
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-teal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--color-teal-dark);
    gap: 10px;
}

/* === SERVICE CARD PHOTO VARIANT === */
.service-card--photo {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.service-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card--photo:hover .service-card-photo {
    transform: scale(1.06);
}

.service-card-photo-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.0) 100%);
    text-align: center;
}

.service-card-photo-overlay h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card-photo-overlay .service-link {
    color: #fff;
}

.service-card-photo-overlay .service-link:hover {
    color: rgba(255,255,255,0.8);
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--color-white);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

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

.about-text {
    padding-bottom: 40px;
}

.about-label {
    display: inline-block;
    color: var(--color-teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.about-feature i {
    color: var(--color-orange);
    font-size: 1.1rem;
}

/* === TEAM SECTION === */
.team-section {
    background: var(--color-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

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

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

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-info span {
    color: var(--color-teal);
    font-size: 0.9rem;
    font-weight: 500;
}

/* === CONTACT SECTION === */
.contact-section {
    background: var(--color-white);
}

/* Kompakter Kontaktstreifen */
.contact-section--compact {
    padding: 40px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.contact-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.contact-compact-block {
    padding: 24px 28px;
    border-right: 1px solid var(--color-border);
}

.contact-compact-block:last-child {
    border-right: none;
}

.contact-compact-block h3 {
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-teal);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-compact-block p {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.contact-compact-block a {
    color: var(--color-text);
    display: block;
}

.contact-compact-block a:hover {
    color: var(--color-teal);
}

.closed-note {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-grid--single {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.1rem;
}

.contact-item-text strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 500;
}

.contact-item-text a:hover {
    color: var(--color-teal);
}

/* Opening Hours */
.opening-hours {
    margin-top: 36px;
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 24px;
}

.opening-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-teal);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row .day {
    font-weight: 500;
    color: var(--color-dark);
}

.hours-row .time {
    color: var(--color-text-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(20, 150, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: var(--color-teal-light);
    border-radius: var(--radius);
    color: var(--color-teal-dark);
    font-weight: 500;
}

/* === MAP SECTION === */
.map-section {
    height: 400px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* === FOOTER === */
.footer {
    background: var(--color-white);
    color: var(--color-text);
    padding: 24px 0 0;
    border-top: 3px solid var(--color-teal);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
}

/* Schlankes Footer-Layout */
.footer-slim-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 8px 0 16px;
}

.footer-slim-logo {
    height: 48px;
    width: auto;
    mix-blend-mode: multiply;
    flex-shrink: 0;
}

.footer-slim-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-slim-links a {
    font-size: 0.875rem;
    color: var(--color-text-light);
    transition: color 0.2s;
}

.footer-slim-links a:hover {
    color: var(--color-teal);
}

.footer-slim-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-slim-contact a {
    font-size: 0.875rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.footer-slim-contact a i {
    color: var(--color-teal);
    font-size: 0.8rem;
}

.footer-slim-contact a:hover {
    color: var(--color-teal);
}

.footer-slim-bottom {
    border-top: 1px solid var(--color-border);
    padding: 12px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    background: var(--color-bg);
}

.footer-grid {
    display: block;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 16px;
    filter: none;
    mix-blend-mode: multiply;
}

.footer-brand p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: var(--color-teal-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-orange);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--color-orange);
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 0.75rem;
    color: var(--color-orange);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    background: var(--color-bg);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-text-light);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* === SUBPAGE STYLES === */
.page-hero {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
    padding: 120px 0 60px;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero .page-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    border: 2px solid rgba(255,255,255,0.3);
}

.page-hero h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: none;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--color-white);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Content sections for subpages */
.content-section {
    padding: 80px 0;
    background: var(--color-white);
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--color-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 0.75rem;
    margin-top: 2px;
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Indications */
.indications-section {
    background: var(--color-bg);
    padding: 80px 0;
}

.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.indication-item {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.indication-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.indication-item i {
    color: var(--color-teal);
    font-size: 1.1rem;
}

.indication-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-banner h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
}

/* === IMAGE GALLERY === */
/* ===== PRAXIS BILDBAND ===== */
.praxis-band-section {
    padding: 80px 0 60px;
    background: var(--color-bg);
}

.praxis-band-header {
    text-align: center;
    margin-bottom: 44px;
}

/* Viewport: schneidet links & rechts ab, kein Scrollbar */
.praxis-band-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Sanfte Randübergänge */
.praxis-band-viewport::before,
.praxis-band-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.praxis-band-viewport::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg, #f8f6f3), transparent);
}
.praxis-band-viewport::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg, #f8f6f3), transparent);
}

/* Laufendes Band */
.praxis-band-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: praxis-scroll 32s linear infinite;
}

.praxis-band-track:hover {
    animation-play-state: paused;
}

@keyframes praxis-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Einzelnes Bild-Karten */
.praxis-band-item {
    flex-shrink: 0;
    width: 340px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.praxis-band-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.praxis-band-item:hover img {
    transform: scale(1.04);
}

.praxis-band-cta {
    margin-top: 36px;
}

/* Philosophie-Grid mit Foto-Karten */
.philosophie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.philosophie-foto-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 220px;
}

.philosophie-foto-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.philosophie-foto-card:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .philosophie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .philosophie-grid {
        grid-template-columns: 1fr;
    }
}

/* Hochformat-Variante für Über-uns-Bildband */
.praxis-band-item--portrait {
    width: 260px;
    height: 380px;
}

/* Foto-Grid für Über uns Einblicke */
.praxis-fotos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.praxis-foto-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.praxis-foto-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.praxis-foto-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 640px) {
    .praxis-fotos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ALTE GALLERY (behalten für galerie.html) ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--color-bg);
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    min-height: 200px;
}

.gallery-item:first-child img {
    min-height: 400px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 150, 160, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
    background: none;
    border: none;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-teal);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 500;
    border: none;
    font-size: 1rem;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-teal-dark);
    transform: translateY(-3px);
}

/* ===================================================
   TERMIN-MODAL
   =================================================== */

/* Overlay */
.termin-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10, 50, 55, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.termin-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Modal-Box */
.termin-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.termin-modal-overlay.open .termin-modal {
    transform: translateY(0) scale(1);
}

/* Header */
.termin-modal-header {
    background: #ffffff;
    border-bottom: 3px solid var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.termin-modal-logo img {
    height: 58px;
    width: auto;
    filter: none;
}

.termin-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-teal-light);
    border: none;
    color: var(--color-teal-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.termin-modal-close:hover {
    background: rgba(255,255,255,0.32);
}

/* Body */
.termin-modal-body {
    padding: 32px 28px 28px;
    text-align: center;
}

.termin-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-teal-light);
    color: var(--color-teal);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.termin-modal-body h2 {
    font-size: 1.7rem;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.termin-modal-subtitle {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Info-Card */
.termin-info-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.termin-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
}

.termin-info-row + .termin-info-row {
    border-top: 1px solid var(--color-border);
}

.termin-info-row > i {
    font-size: 1.1rem;
    color: var(--color-teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.termin-info-row.termin-info-warning > i {
    color: #d97706;
}

.termin-info-row div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.termin-info-row div strong {
    font-size: 0.9rem;
    color: var(--color-dark);
}

.termin-info-row div span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Anruf-Button */
.termin-modal-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--color-teal);
    color: #fff;
    border-radius: 50px;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(20,150,160,0.35);
    margin-bottom: 16px;
}

.termin-modal-call:hover {
    background: var(--color-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(20,150,160,0.45);
}

.termin-modal-call i {
    font-size: 1.3rem;
}

.termin-modal-call div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.termin-modal-call div strong {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.termin-modal-call div span {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 400;
}

/* Puls-Animation am Anruf-Button */
.termin-call-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    animation: terminPulse 2s ease-out infinite;
}

@keyframes terminPulse {
    0%   { transform: scale(1); opacity: 0.5; }
    70%  { transform: scale(1.05); opacity: 0; }
    100% { opacity: 0; }
}

/* Hinweis-Text */
.termin-modal-hint {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.termin-modal-hint i {
    color: var(--color-teal);
}

/* Kontakt-Bereich: Telefon-Box */
.termin-phone-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-teal-light);
    border-left: 4px solid var(--color-teal);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.termin-phone-icon {
    width: 44px;
    height: 44px;
    background: var(--color-teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.termin-phone-box strong {
    display: block;
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.termin-phone-box p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.termin-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-teal);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.termin-call-btn:hover {
    background: var(--color-teal-dark);
    transform: translateY(-1px);
}

/* Öffnungszeiten - geschlossen */
.hours-row.closed .time {
    color: #e53e3e;
    font-weight: 600;
}

.hours-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hours-note i {
    color: var(--color-teal);
}

/* Modal auf Mobile */
@media (max-width: 480px) {
    .termin-modal-body { padding: 24px 18px 20px; }
    .termin-modal-call div strong { font-size: 1.1rem; }
    .termin-modal-body h2 { font-size: 1.4rem; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero-text { padding: 80px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .contact-compact-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-compact-block:nth-child(2) { border-right: none; }
    .contact-compact-block:nth-child(1),
    .contact-compact-block:nth-child(2) { border-bottom: 1px solid var(--color-border); }
}

@media (max-width: 640px) {
    .contact-compact-grid { grid-template-columns: 1fr 1fr; }
    .footer-slim-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-slim-links { gap: 12px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 2rem; }

    /* Nav */
    .nav-menu {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu a { width: 100%; padding: 12px 16px; }
    .nav-toggle { display: flex; }

    /* Dropdown mobile */
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown > .nav-dropdown-toggle {
        width: 100%;
        padding: 12px 16px;
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--color-bg);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 600px;
    }
    .nav-dropdown-menu a {
        padding: 10px 16px 10px 36px;
        font-size: 0.88rem;
    }
    .nav-dropdown-menu a:hover {
        padding-left: 42px;
    }
    .nav-dropdown-divider { margin: 4px 0; }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 60px 0 50px;
        text-align: center;
        max-width: 100%;
    }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { justify-content: center; }
    .hero-image { display: none; }

    /* Sections */
    .about-grid { grid-template-columns: 1fr; }
    .about-image-secondary { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .content-grid.reverse { direction: ltr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2rem; }
}
