/* ========================================
   ORGANISATION FEATURES SECTION - Kombiniert - Mobile First
   ======================================== */

.organisation-features {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 143, 102, 0.06) 0%, rgba(0, 191, 166, 0.06) 100%);
    position: relative;
    overflow: hidden;
}

.organisation-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.organisation-features .container {
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
    max-width: 100%;
}

/* Header */
.organisation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.organisation-features .section-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

/* ========================================
   MOBILE CAROUSEL (Standard, < 768px)
   ======================================== */

/* Desktop Layout verstecken auf Mobile */
.org-features-desktop {
    display: none;
}

/* Mobile Carousel anzeigen */
.org-mobile-carousel {
    display: block;
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
}

/* Carousel Container - Subtiler Gradient */
.org-carousel-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem 1rem;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Einzelne Slides */
.org-carousel-slide {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    animation: slideInCarousel 0.4s ease;
}

.org-carousel-slide.active {
    display: flex;
}

/* Text-Bereich im Slide */
.org-slide-text {
    width: 100%;
    padding: 0 0.5rem;
}

/* Header mit Icon */
.org-slide-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.org-slide-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.org-slide-text h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.org-slide-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Bild-Bereich im Slide */
.org-slide-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.org-slide-image img {
    max-width: 95%;
    height: auto;
    width: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Dot Indicators */
.org-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.org-dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.org-dot.active {
    background: var(--primary);
    width: 12px;
    height: 12px;
}

/* Slide Animation */
@keyframes slideInCarousel {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CTA Button am Ende */
.organisation-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
}

.organisation-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.organisation-cta .cta-button i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.organisation-cta .cta-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(53, 181, 255, 0.4);
}

.organisation-cta .cta-button:hover i {
    transform: translateX(5px);
}

/* ========================================
   TABLET & DESKTOP (ab 768px)
   ======================================== */

@media (min-width: 768px) {
    .organisation-features {
        padding: 5rem 2rem;
    }

    .organisation-header {
        margin-bottom: 4rem;
    }

    .organisation-features .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .organisation-features .section-subtitle {
        font-size: 1.25rem;
        max-width: 800px;
    }

    /* Mobile Carousel verstecken */
    .org-mobile-carousel {
        display: none;
    }

    /* Desktop Layout anzeigen */
    .org-features-desktop {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 2rem;
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    /* Button Sidebar */
    .org-desktop-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .org-desktop-btn {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        background: rgb(246, 246, 246);
        border: 2px solid transparent;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: left;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    /* Orange Hintergrund-Animation */
    .org-desktop-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-cool);
        transition: left 0.3s ease;
        z-index: 0;
    }

    .org-desktop-btn.active::before {
        left: 0;
    }

    /* Feature Icon im Button */
    .org-desktop-btn > .org-feature-icon {
        width: 28px;
        height: 28px;
        color: #404040;
        transition: color 0.3s ease;
        z-index: 10;
        position: relative;
        flex-shrink: 0;
    }

    .organiser-features-button {
        color: rgb(246, 246, 246) !important;
         z-index: 10 !important;
    }

    .org-desktop-btn.active > .org-feature-icon {
        color: rgb(46, 46, 46) !important;
        z-index: 10 !important;
    }

    .org-desktop-btn.active > .org-feature-icon,
    .org-desktop-btn.active > .org-feature-icon svg,
    .org-desktop-btn.active > .org-feature-icon svg path {
        stroke: rgb(46, 46, 46) !important;
        color: rgb(46, 46, 46) !important;
    }

    /* Text im Button */
    .org-desktop-btn-text {
        position: relative;
        z-index: 1;
        flex: 1;
    }

    .org-desktop-btn-text h3 {
        font-size: 1.3rem;
        color: #404040;
        margin-bottom: 0.4rem;
        font-weight: 700;
        transition: color 0.3s ease;
    }

    .org-desktop-btn-text p {
        font-size: 0.95rem;
        color: #666;
        transition: color 0.3s ease;
    }

    .org-desktop-btn.active .org-desktop-btn-text h3,
    .org-desktop-btn.active .org-desktop-btn-text p {
        color: rgb(46, 46, 46);
    }

    .org-desktop-btn:hover:not(.active) {
        border-color: var(--primary-light);
        transform: translateX(5px);
    }

    /* Bild-Display - Subtiler Gradient */
    .org-desktop-display {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.95) 100%);
        border-radius: 24px;
        padding: 2rem;
        min-height: 500px;
        max-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .org-desktop-image {
        display: none;
        animation: fadeIn 0.4s ease;
    }

    .org-desktop-image.active {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .org-desktop-image img {
        max-width: 75%;
        max-height: 85%;
        height: auto;
        border-radius: 12px;
        object-fit: contain;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    /* CTA Button Desktop */
    .organisation-cta {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .organisation-cta .cta-button {
        font-size: 1.1rem;
        padding: 1.1rem 2.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .organisation-features {
        padding: 6rem 2rem;
    }

    .organisation-features .section-title {
        font-size: 3rem;
    }

    .organisation-features .section-subtitle {
        font-size: 1.3rem;
    }

    .org-features-desktop {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .org-desktop-display {
        min-height: 600px;
        max-height: 700px;
    }

    .org-desktop-image img {
        max-width: 80%;
        max-height: 90%;
    }
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}