/* --- SUPPORT PAGE STYLES --- */

/* Scrollbar am Body verstecken, aber Scrollen erlauben (für Section Snap) */
html, body {
    overflow: hidden; 
    margin: 0;
    padding: 0;
}

/* Breadcrumb Positionierung (Oben Links) */
.section-breadcrumb-container {
    position: absolute;
    top: 120px;
    left: 400px;
    z-index: 10;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bc-home-icon {
    color: #a1a1aa;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    text-decoration: none;
}
.bc-home-icon:hover { color: white; }

.bc-separator {
    color: #52525b;
    display: flex;
    align-items: center;
}

.bc-current {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

/* --- HERO SECTION LAYOUT (ZENTRIERUNG) --- */
.support-hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Volle Höhe erzwingen */
    
    /* Flexbox für perfekte Zentrierung */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    text-align: center; /* Text zentrieren */
    padding: 0 20px;
    box-sizing: border-box;
}

.support-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Elemente mittig ausrichten */
}

/* Pill oben */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 32px;
    font-weight: 500;
}
.pill-icon { color: var(--primary-orange); }

/* Titel */
.hero-title {
    font-size: 4rem; /* Etwas kleiner als Home, damit es passt */
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: white;
}
.text-orange { color: var(--primary-orange); }

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: #9ca3af; /* Grau */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* --- BUTTONS --- */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    justify-content: center;
}

.btn-hero-primary {
    background-color: var(--primary-orange);
    color: #0c0b09;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-hero-primary:hover { transform: scale(1.05); }

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.05); }

/* --- STATS (NEBENEINANDER) --- */
.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .section-breadcrumb-container { top: 100px; left: 20px; }
}

/* --- SECTION 2: FAQ (LIST STYLE - Wie Startseite) --- */

.support-faq-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header */
.s-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.s-faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 10px 0;
}

.s-faq-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ Container (Die große Box) */
.faq-container {
    width: 100%;
    max-width: 900px;
    background-color: #0c0b09; /* Sehr dunkel */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden; 
}

/* Einzelnes Item (Zeile) */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Active State */
.faq-item.active {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Frage Bereich */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.q-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #e4e4e7;
    font-weight: 600;
    font-size: 1rem;
}

/* Icon Links (Orange) */
.q-icon {
    color: var(--primary-orange);
    display: flex;
    align-items: center;
}

/* Pfeil Rechts */
.q-chevron {
    color: #71717a;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-item.active .q-chevron {
    transform: rotate(180deg);
    color: white;
}

/* Antwort Bereich */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0,0,0,0.2);
}

.answer-content {
    /* Padding oben/unten für Abstand */
    padding: 20px 24px 24px 60px; 
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 600px) {
    .q-left { font-size: 0.9rem; gap: 12px; }
    .answer-content { padding-left: 24px; }
}

/* --- SECTION 3: KONTAKT FORMULAR --- */

.contact-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.contact-container {
    width: 100%;
    max-width: 600px; /* Schön kompakt */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-label {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 10px 0;
}

.contact-header p {
    color: #9ca3af;
    font-size: 1rem;
    margin: 0;
}

/* Formular */
.contact-form {
    width: 100%;
    background-color: #0c0b09;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

/* Einzelne Eingabegruppen */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e4e4e7;
    margin-left: 2px;
}

/* Inputs, Select, Textarea */
.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: inherit; /* Nimmt Font der Seite an */
    font-size: 0.95rem;
    transition: all 0.2s;
    outline: none;
}

/* Placeholder Farbe */
::placeholder {
    color: #52525b;
}

/* Fokus Effekt (Orange) */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}

/* Submit Button */
.btn-submit {
    background-color: var(--primary-orange);
    color: #0c0b09;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.1s, background-color 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #fb923c;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .contact-form {
        padding: 20px;
    }
    .contact-header h2 {
        font-size: 2rem;
    }
}