/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4F6B63;
    --secondary-color: #F6F4EC;
    --accent-color: #C9A94D;
    --highlight-color: #E8EFE7;
    --dark-accent: #24342E;
    --white: #FFFFFF;
    --text-color: #24342E;
    --text-light: #5F6F69;

    /* Zusatzfarben */
    --soft-green: #8DA399;
    --leaf-green: #6F8A70;
    --warm-yellow: #C9A94D;
    --soft-yellow: #E6D38A;

    /* Schatten und Effekte */
    --shadow-light: 0 2px 10px rgba(36, 52, 46, 0.08);
    --shadow-medium: 0 4px 20px rgba(36, 52, 46, 0.14);

    /* Übergänge */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.6s ease;
    --transition-slow: 1s ease;

    /* Typografie */
    --font-primary: 'Poppins', sans-serif;
    --font-size-base: 1rem;
    --font-size-xl: 1.25rem;
    --font-size-5xl: 3rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    position: relative;
}

/* ===== ANIMATED BACKGROUND CONTAINER ===== */
.animated-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Neutraler, ruhiger Hintergrund */
.water-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;

    background: linear-gradient(
        180deg,
        rgba(230, 211, 138, 0.10) 0%,
        rgba(141, 163, 153, 0.16) 45%,
        rgba(79, 107, 99, 0.22) 100%
    );

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 180'%3E%3Cdefs%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='4'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='1200' height='180' fill='%238DA399' opacity='0.20' filter='url(%23noise)'/%3E%3Cpath d='M0 90 Q300 50 600 90 T1200 90 L1200 180 L0 180 Z' fill='%23C9A94D' opacity='0.08'/%3E%3Cpath d='M0 110 Q300 70 600 110 T1200 110 L1200 180 L0 180 Z' fill='%234F6B63' opacity='0.12'/%3E%3Cpath d='M0 125 Q300 90 600 125 T1200 125 L1200 180 L0 180 Z' fill='%2324342E' opacity='0.05'/%3E%3C/svg%3E");

    background-size: 1200px 180px;
    background-repeat: repeat-x;
    background-position: 0 100%;
    animation: oceanDrift 60s ease-in-out infinite;
    will-change: transform, background-position;
}

@keyframes oceanDrift {
    0% {
        background-position: 0 100%;
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-2px);
    }
    50% {
        background-position: -600px 100%;
        transform: translateY(0px);
    }
    75% {
        transform: translateY(2px);
    }
    100% {
        background-position: -1200px 100%;
        transform: translateY(0px);
    }
}

/* Rose Petals deaktiviert für neutraleren Look */
.rose-petals-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.rose-petal {
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--soft-green), var(--leaf-green));
    border-radius: 50% 0 50% 50%;
    opacity: 0.55;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(36, 52, 46, 0.16));
}

@keyframes fallPetal {
    0% {
        transform: translateY(-100px) translateX(0) rotateZ(0deg) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.55;
    }
    50% {
        opacity: 0.45;
    }
    100% {
        transform: translateY(110vh) translateX(var(--tx, 0)) rotateZ(280deg) scale(1.05);
        opacity: 0;
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0) rotateZ(0deg);
    }
    25% {
        transform: translateX(18px) rotateZ(4deg);
    }
    75% {
        transform: translateX(-18px) rotateZ(-4deg);
    }
}

/* ===== ACCESSIBILITY: Skip-Link ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 4px;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 244, 239, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(245, 244, 239, 0.97);
}

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

.nav-logo {
    font-weight: 600;
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    animation: slideInDown 0.6s ease;
}

/* Logo image sizing in header */
.logo-link {
    display: inline-block;
}

.site-logo {
    display: block;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    animation: slideInDown 0.6s ease;
    animation-fill-mode: both;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--dark-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-fast);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-fast);
}

/* ===== GENERAL ANIMATIONS ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Fade-in classes for scroll animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Staggered animations for multiple elements */
.intro-grid .fade-in-up:nth-child(1) { animation-delay: 0.2s; }
.intro-grid .fade-in-up:nth-child(2) { animation-delay: 0.4s; }
.intro-grid .fade-in-up:nth-child(3) { animation-delay: 0.6s; }

/* Staggered animations for stats */
.stats-inner .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.stats-inner .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.stats-inner .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.stats-inner .fade-in-up:nth-child(4) { animation-delay: 0.4s; }

.services-grid .fade-in-up:nth-child(1) { animation-delay: 0.2s; }
.services-grid .fade-in-up:nth-child(2) { animation-delay: 0.4s; }
.services-grid .fade-in-up:nth-child(3) { animation-delay: 0.6s; }

.contact-grid .fade-in-up:nth-child(1) { animation-delay: 0.2s; }
.contact-grid .fade-in-up:nth-child(2) { animation-delay: 0.4s; }

/* ===== GENERAL LAYOUT & TYPOGRAPHY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

h1, h2, h3 {
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-5xl);
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--soft-yellow));
    margin: 10px auto 20px;
    border-radius: 2px;
    animation: scaleIn 0.6s ease;
}

.section-subtitle {
    color: var(--text-light);
    font-size: var(--font-size-xl);
}

.animate-title {
    animation: slideInDown 0.8s ease;
}

.animate-subtitle {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.animate-btn {
    animation: scaleIn 0.6s ease 0.4s both;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    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.24);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--leaf-green));
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-accent), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 52, 46, 0.22);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: rgba(201, 169, 77, 0.10);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 150px;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--highlight-color);
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.stat-item {
    padding: 15px;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.stat-item:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1rem;
    color: var(--dark-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 600px;
}

.hero-text p {
    font-size: var(--font-size-xl);
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-flower-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    opacity: 0.96;
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(36, 52, 46, 0.14);
    object-fit: cover;
}

/* ===== ABOUT / INTRO SECTION ===== */
.about {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 70px 0;
}

.about-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    column-gap: 350px;
    row-gap: 28px;
    align-items: center;
}

.about-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-photo {
    width: 260px;
    height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow-light);
}

.about-right {
    text-align: left;
}

.about-right .section-title {
    margin: 0 0 10px 0;
}

.about-right .section-divider {
    margin: 10px 0 12px 0;
}

.about-right .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.92;
}

.intro-grid {
    display: grid;
    margin-top: 50px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.intro-item {
    padding: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 107, 99, 0.08);
}

.intro-item::before {
    content: none !important;
}

.intro-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.intro-icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    animation: none !important;
}

.intro-item h3 {
    margin: 0 0 8px 0;
}

.intro-item p {
    margin: 0;
    line-height: 1.6;
}

.qualification-box {
    margin: 3rem auto 0;
    max-width: 680px;
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(79, 107, 99, 0.12);
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(36, 52, 46, 0.05);
}

.qualification-box h4 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #314840;
}

.qualification-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #465650;
    margin-bottom: 1rem;
}

.qualification-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #314840;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.qualification-link:hover {
    border-color: #314840;
}

@media (max-width: 980px) {
    .about-row {
        grid-template-columns: 220px 1fr;
        gap: 22px;
    }

    .about-photo {
        width: 220px;
        height: 280px;
    }

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

    .intro-item {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .about {
        padding: 55px 0;
    }

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

    .about-left {
        justify-content: flex-start;
    }

    .about-photo {
        width: 100%;
        height: 320px;
    }
}

.about-more {
    margin-top: 18px;
}

.about-more-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(79, 107, 99, 0.30);
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-more-toggle:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-1px);
}

.about-more-content {
    margin-top: 14px;
    border: 1px solid rgba(79, 107, 99, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(36, 52, 46, 0.08);
    transition: height 0.35s ease;
}

.about-more-inner {
    padding: 20px 22px 22px;
}

.about-more-inner p {
    margin: 0 0 12px;
    color: #52615B;
    line-height: 1.7;
}

.about-subhead {
    margin: 18px 0 10px;
    color: #2F413B;
    font-size: 16px;
    font-weight: 800;
}

.about-list {
    margin: 0;
    padding-left: 18px;
    color: #52615B;
    line-height: 1.7;
}

.about-list li {
    margin: 4px 0;
}

/* ===== METHODS / SERVICES SECTION ===== */
.services {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 107, 99, 0.08);
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateZ(4deg);
    color: var(--dark-accent);
}

.service-title {
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--dark-accent);
}

.service-card:focus {
    outline: 2px solid rgba(141, 163, 153, 0.55);
    outline-offset: 4px;
}

/* ===== METHOD DETAILS TOGGLE ===== */
.method-details {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(79, 107, 99, 0.14);
    text-align: left;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    transition:
        max-height 420ms ease,
        opacity 320ms ease,
        transform 320ms ease;
    will-change: max-height, opacity, transform;
}

.service-card.is-open .method-details {
    max-height: 700px;
    opacity: 1;
    transform: translateY(0);
}

.method-details h4 {
    color: var(--dark-accent);
    font-size: 1rem;
    margin: 10px 0 8px;
}

.method-details p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.method-details ul {
    padding-left: 18px;
    margin: 0 0 10px;
    color: var(--text-light);
}

.method-details li {
    margin-bottom: 6px;
}

/* ===== MODALS ===== */
.modal-dialog-medium {
    width: min(820px, calc(100% - 40px));
}

.modal .modal-dialog {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease;
}

.modal.is-open .modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-dialog-medium {
    width: min(860px, calc(100% - 28px));
}

.modal-header {
    padding: 18px 22px;
}

.modal-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 650;
}

/* ===== PRICE BOX ===== */
.price-box {
    margin-top: 14px;
    padding: 16px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-light);
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 10px 0;
}

.price-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price-desc {
    font-size: 0.95rem;
    opacity: 0.85;
}

.price-value {
    white-space: nowrap;
    font-size: 1.05rem;
}

.price-sep {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 8px 0 10px 0;
}

.price-note {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 520px) {
    .price-row {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 1rem;
    }
}

.modal-title-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(141, 163, 153, 0.18);
    border: 1px solid rgba(79, 107, 99, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.modal-close {
    background: transparent;
    border: 1px solid rgba(79, 107, 99, 0.22);
    color: var(--primary-color);
    padding: 9px 14px;
}

.modal-close:hover {
    background: rgba(141, 163, 153, 0.14);
}

#methods-modal-content {
    max-width: 760px;
}

#methods-modal-content h4 {
    margin-top: 18px;
}

#methods-modal-content ul {
    display: grid;
    gap: 10px;
}

@media (min-width: 900px) {
    #methods-modal-content ul {
        grid-template-columns: 1fr 1fr;
    }
}

#methods-modal-content li {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(79, 107, 99, 0.10);
    border-radius: 14px;
    padding: 12px 12px;
}

/* ===== BLOG SECTION ===== */
.blog {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(79, 107, 99, 0.08);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 170px;
}

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

.blog-card:hover .blog-image {
    transform: scale(1.04);
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 107, 99, 0.10), rgba(36, 52, 46, 0.08));
    transition: opacity var(--transition-fast);
}

.blog-card:hover .blog-image::after {
    opacity: 0.5;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--dark-accent);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    width: fit-content;
}

.blog-link:hover {
    color: var(--dark-accent);
    transform: translateX(5px);
}

.blog-link i {
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-link i {
    transform: translateX(3px);
}

.blog-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.modal.is-open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
    position: relative;
    width: min(1000px, calc(100% - 40px));
    margin: 80px auto;
    background: var(--secondary-color);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-dialog-large {
    width: min(1100px, calc(100% - 40px));
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(245, 244, 239, 0.95);
    border-bottom: 1px solid rgba(79, 107, 99, 0.12);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.modal-close {
    border: 1px solid rgba(79, 107, 99, 0.35);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--highlight-color);
}

.modal-body {
    padding: 20px;
    max-height: calc(100vh - 200px);
    overflow: auto;
}

.modal-body-iframe {
    padding: 0;
}

.modal-body-iframe iframe {
    width: 100%;
    height: min(78vh, 900px);
    border: 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 70px auto;
        width: calc(100% - 24px);
    }

    .modal-body {
        max-height: calc(100vh - 180px);
    }
}

/* Staggered animations for blog cards */
.blog-grid .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.blog-grid .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.blog-grid .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.blog-grid .fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.blog-grid .fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.blog-grid .fade-in-up:nth-child(6) { animation-delay: 0.6s; }

/* ===== GALLERY SECTION ===== */
.flower-gallery {
    padding: 40px 20px;
    text-align: center;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(36, 52, 46, 0.18);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

/* ===== RELAXATIO CROSS-LINK SECTION ===== */
.relaxatio-section {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.relaxatio-card {
    background: linear-gradient(135deg, rgba(141, 163, 153, 0.16), rgba(231, 236, 232, 0.72));
    border: 1px solid rgba(79, 107, 99, 0.14);
    border-radius: 14px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
}

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

.relaxatio-title {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.relaxatio-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 780px;
}

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

.relaxatio-note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 780px;
}

@media (max-width: 768px) {
    .relaxatio-card {
        padding: 28px 22px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--highlight-color);
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    position: relative;
    border: 1px solid rgba(79, 107, 99, 0.08);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.contact-card h3 {
    color: var(--dark-accent);
    margin-bottom: 15px;
    transition: color var(--transition-fast);
}

.contact-card:hover h3 {
    color: var(--primary-color);
}

.contact-card p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(79, 107, 99, 0.08);
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark-accent);
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #D8DDD9;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: #fff;
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 107, 99, 0.10);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-accent);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 20px 40px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    color: #B8C9C1;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-nav h4,
.footer-legal h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: #B8C9C1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 18px 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-accent);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-inner {
        gap: 30px;
        padding: 50px 20px 30px;
    }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-illustration {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        text-align: center;
        margin: 10px 0;
        animation: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

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

    .container {
        padding: 60px 20px;
    }

    h2 {
        font-size: 2rem;
    }

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

    .blog-card {
        flex-direction: row;
    }

    .blog-image {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
    }

    .blog-content {
        padding: 20px;
    }
}

/* ===== Floating Contact CTA ===== */
.floating-contact {
    position: fixed;
    top: 40%;
    right: 22px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6F877E, #4F6B63);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(36, 52, 46, 0.22);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.floating-btn i {
    font-size: 1.1rem;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(36, 52, 46, 0.30);
}

@media (max-width: 640px) {
    .floating-btn span {
        display: none;
    }

    .floating-btn {
        padding: 14px;
    }
}

/* ===== Footer Rechtliches Designe ===== */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    max-width: 900px;
    max-height: 80vh;
    margin: 5vh auto;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===== FRAUENGESUNDHEIT TEAM SECTION – neutralisiert ===== */
.fh-team {
    padding: 80px 0;
    background: #F3F4F0;
}

.fh-team .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fh-team .section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: #2F413B;
    margin-bottom: 14px;
}

.fh-team .section-divider {
    width: 80px;
    height: 3px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4F6B63, #8DA399);
}

.fh-team .section-subtitle {
    color: #5F6F69;
    font-size: 17px;
}

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

@media (max-width: 980px) {
    .fh-team .team-grid {
        grid-template-columns: 1fr;
    }
}

.fh-team .member-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(36, 52, 46, 0.08);
    border: 1px solid rgba(79, 107, 99, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fh-team .member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(36, 52, 46, 0.12);
}

.fh-team .member-image {
    height: 260px;
    overflow: hidden;
}

.fh-team .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.fh-team .member-overlay {
    display: none;
}

.fh-team .member-info {
    padding: 30px 30px 35px;
    text-align: center;
}

.fh-team .member-name {
    font-size: 22px;
    font-weight: 800;
    color: #2F413B;
    margin-bottom: 8px;
}

.fh-team .member-role {
    font-size: 15px;
    color: #4F6B63;
    font-weight: 600;
    margin-bottom: 16px;
}

.fh-team .member-description {
    font-size: 15px;
    line-height: 1.7;
    color: #5F6F69;
    margin-bottom: 24px;
}

.fh-team .member-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fh-team .contact-btn {
    padding: 12px 22px;
    border-radius: 999px;
    background: #4F6B63;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.fh-team .contact-btn:hover {
    background: #3F5750;
    transform: translateY(-2px);
}

.fh-team .contact-btn.secondary {
    background: transparent;
    color: #4F6B63;
    border: 1px solid #4F6B63;
}

.fh-team .contact-btn.secondary:hover {
    background: #4F6B63;
    color: #fff;
}


/* ===== REVIEWS / BEWERTUNGEN MARQUEE ===== */
.reviews-section {
    background: var(--highlight-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews-marquee {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 80px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewsMarquee 28s linear infinite;
}

.reviews-marquee.is-paused .reviews-track,
.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

.review-card {
    width: 360px;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(79, 107, 99, 0.12);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow-light);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.review-stars {
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 18px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: var(--dark-accent);
    margin-bottom: 16px;
}

.review-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-read-more {
    border: 1px solid rgba(79, 107, 99, 0.25);
    background: #fff;
    color: var(--primary-color);
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.review-read-more:hover {
    background: var(--primary-color);
    color: #fff;
}

.review-modal-date {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 18px;
}

.review-modal-text {
    white-space: pre-line;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.review-modal-author {
    margin-top: 24px;
    font-weight: 700;
    color: var(--dark-accent);
}

@keyframes reviewsMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .review-card {
        width: 300px;
        padding: 22px;
    }

    .reviews-track {
        animation-duration: 36s;
    }
}

/* ===== UEBER UNS SECTION: NEUE STRUKTUR ===== */

.about {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 70px 0;
}

.about-main {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 52px;
    align-items: center;
}

.about-main-image {
    width: 100%;
}

.about-main-image .about-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-medium);
    display: block;
}

.about-main-text {
    text-align: left;
}

.about-main-text .section-title {
    margin: 0 0 10px 0;
}

.about-main-text .section-divider {
    margin: 10px 0 12px 0;
}

.about-main-text .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.92;
}

.about-more-toggle {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(79, 107, 99, 0.30);
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-more-toggle:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-1px);
}

.about-team-content {
    margin-top: 34px;
    overflow: hidden;
    transition: height 0.38s ease;
}

.about-team-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-person-card {
    display: grid;
    grid-template-columns: minmax(240px, 330px) 1fr;
    gap: 30px;
    align-items: start;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(79, 107, 99, 0.12);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 50px rgba(36, 52, 46, 0.08);
}

.about-person-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
}

.about-person-text h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark-accent);
}

.about-person-role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-person-text p {
    color: #52615B;
    line-height: 1.75;
    margin-bottom: 12px;
}

.about-list-columns {
    columns: 2;
    column-gap: 34px;
}

.about-list-columns li {
    break-inside: avoid;
}

.intro-grid {
    display: grid;
    margin-top: 50px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .intro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .about-main,
    .about-person-card {
        grid-template-columns: 1fr;
    }

    .about-main-image .about-photo,
    .about-person-image img {
        height: auto;
        max-height: 420px;
    }

    .about-list-columns {
        columns: 1;
    }
}

@media (max-width: 620px) {
    .about {
        padding: 55px 0;
    }

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

    .about-person-card {
        padding: 20px;
    }
}


/* ===== ABOUT TOGGLE FIX ===== */

#about-team-content[hidden]{
    display:none !important;
}

#about-team-content{
    display:block;
    margin-top:40px;
}

.contact-form button[type="submit"]{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:auto;
    min-width:220px;

    padding:14px 32px;

    border:none;
    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--leaf-green)
    );

    color:#fff;

    font-size:1rem;
    font-weight:600;

    cursor:pointer;

    box-shadow:
        0 8px 25px rgba(79,107,99,.25);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .3s ease;
}

.contact-form button[type="submit"]:hover{

    transform:translateY(-3px);

    box-shadow:
        0 12px 30px rgba(79,107,99,.35);
}

.contact-form button[type="submit"]:active{

    transform:translateY(0);
}