/* ===================================================
 * FAQ SECTION - Moderne Accordion-Style
 * =================================================== */

.faq-section {
    max-width: 1400px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 100;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.faq-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(63, 63, 70, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.faq-question:hover {
    color: rgba(255, 215, 0, 0.95);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: rgba(255, 215, 0, 0.8);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
}

/* Pack Texture in erster FAQ */
.faq-pack-texture {
    width: 240px;
    height: auto;
    display: block;
    margin: 0 0 1rem 0;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* === INFO BOXES === */
.faq-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.info-box {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(63, 63, 70, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 0;
}

.info-box:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.info-icon i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    margin: 0;
}

.info-description {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Info Clock - wie im Pack Container */
.info-clock-container {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.25rem;
    position: relative;
}

.info-clock-face {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.info-clock-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.info-clock-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    z-index: 2;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: clockRotate 4s ease-in-out infinite;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes clockRotate {
    0%, 20% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25%, 45% {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    50%, 70% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
    75%, 95% {
        transform: translate(-50%, -50%) rotate(270deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.info-inline-gem {
    display: inline-block;
    height: 1.1em;
    width: auto;
    margin: 0 0.2rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

/* Inline Marker in FAQ */
.faq-inline-marker {
    display: inline-block;
    height: 1.2em;
    width: auto;
    margin: 0 0.3rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-info-boxes {
        position: static;
        flex-direction: row;
        gap: 1rem;
    }
    
    .info-box {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .faq-section {
        margin: 4rem auto 3rem;
        padding: 0 1rem;
    }
    
    .faq-title {
        margin-bottom: 2rem;
        font-size: 1.125rem;
        padding: 0.625rem 1.25rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .faq-info-boxes {
        flex-direction: column;
    }
    
    .info-box {
        aspect-ratio: auto;
        padding: 1.5rem;
    }
}
