@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #070b19;
    --bg-darker: #040710;
    --bg-card: rgba(13, 20, 38, 0.65);
    --bg-card-border: rgba(37, 99, 235, 0.15);
    --bg-card-hover: rgba(21, 33, 64, 0.85);
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #60a5fa;
    --accent-glow: rgba(96, 165, 250, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --border-glow: 0 0 10px rgba(37, 99, 235, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    padding-bottom: 0;
}

/* Header / Navbar */
header {
    background: rgba(7, 11, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bg-card-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-Logo {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.navbar-Logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.3));
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-link.active {
    color: var(--text-main);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--accent);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-btn svg {
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.nav-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    padding: 0;
    z-index: 110;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(7, 11, 25, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--bg-card-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 105;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5);
        
        /* Hide offscreen and prevent scroll overflow */
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    }
    
    .nav-menu.active {
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-toggle.active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    body.nav-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.hero-banner {
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--bg-card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.hero-title-group {
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container & Sections */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 80px;
}

h2.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: var(--text-main);
}

h2.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 15px auto 0 auto;
}

/* Info Cards & Grids */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.info-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card-icon {
    background: rgba(37, 99, 235, 0.15);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

.info-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.info-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Call To Action Buttons */
.cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.btn-modern {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-modern:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.btn-modern:active {
    transform: translateY(0);
}

/* Media Blocks (GIF/Firma) */
.media-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.media-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Text Content Section */
.text-section {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    padding: 40px;
    margin: 45px 0;
    text-align: left;
}

.text-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
}

.text-section p:last-child {
    margin-bottom: 0;
}

.text-section p::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Map Section */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* Quick Contact Card */
.quick-contact-section {
    margin: 60px 0;
}

.quick-contact-section .contact-section {
    background: linear-gradient(135deg, rgba(13, 20, 38, 0.8) 0%, rgba(5, 8, 16, 0.9) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.quick-contact-section .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.contact-image-wrapper:hover img {
    transform: scale(1.05);
}

.status-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 3px solid #0d1426;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.contact-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-details h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-main);
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.contact-role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-action-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    padding: 16px 24px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-action-card:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.action-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.phone-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.email-icon {
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

.action-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.action-card-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.action-card-info strong {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 700;
    word-break: break-all;
}

.contact-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.clock-icon {
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .quick-contact-section .contact-section {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .contact-action-card {
        justify-content: center;
    }
    
    .contact-availability {
        justify-content: center;
    }
}

/* Forms page (frage1 & schaden) */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    text-align: left;
    color: var(--text-main);
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

/* Custom Choice Chips for Checklist / Radios */
.chips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.chip-input {
    display: none;
}

.chip-label {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bg-card-border);
    color: var(--text-muted);
    padding: 14px 10px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.chip-label:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.chip-input:checked + .chip-label {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

/* Modern Input Fields */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.input-field-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.input-field-wrapper.full-width {
    grid-column: span 2;
}

.input-modern, .textarea-modern {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-card-border);
    color: var(--text-main);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.input-modern:focus, .textarea-modern:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

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

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper input {
    padding-left: 50px;
}

.input-icon-wrapper svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.input-icon-wrapper input:focus + svg {
    fill: var(--accent);
}

/* Alert / Feedback Meldung */
#meldung {
    margin: 20px 0;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

/* Footer styling */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--bg-card-border);
    padding: 60px 20px 30px 20px;
    text-align: left;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-col p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-Logo {
    height: 42px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9rem !important;
    max-width: 340px;
}

.company-name {
    color: var(--text-main);
    font-weight: 700;
}

.footer-contact-details,
.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-details li,
.footer-hours-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-contact-details a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-details a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.footer-hours-list li span {
    display: inline-block;
    width: 80px;
    font-weight: 600;
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

.copyright a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--accent);
    text-decoration: underline;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Team Section & Grid */
.team-section {
    margin: 60px 0 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 130%; /* Aspect ratio 4:3 portrait */
    overflow: hidden;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.03);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.team-info .team-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info .team-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

.team-info .team-contact a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.team-info .team-contact a:hover {
    color: var(--accent);
}

/* Custom glow effects for premium look */
.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.glow-spot {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsiveness overrides */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .input-grid {
        grid-template-columns: 1fr;
    }
    .input-field-wrapper.full-width {
        grid-column: span 1;
    }
    .form-card {
        padding: 30px 15px;
    }
    h2.section-title {
        font-size: 1.6rem;
    }
    .text-section {
        padding: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-col h4 {
        margin-bottom: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }
}

/* WhatsApp Icon & Card Styling */
.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-action-card.whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    margin: 80px 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    opacity: 0.08;
    color: var(--accent);
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0 !important;
}

/* Application Wizard styling */
.wizard-container {
    background: var(--bg-card);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 45px;
    max-width: 750px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

.wizard-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 35px;
    overflow: hidden;
}

.wizard-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px var(--accent-glow), 0 0 4px var(--primary-glow);
    animation: progressGlow 3s linear infinite;
}

@keyframes progressGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Custom Elements Layout */
application-wizard, schaden-form {
    display: block;
    width: 100%;
}

.wizard-step {
    display: none;
    animation: wizardFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step.active {
    display: block;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.985) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wizard-step-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-main);
    border-left: 4px solid var(--primary);
    padding-left: 14px;
}

.wizard-grid-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.wizard-choice-card {
    position: relative;
    background: rgba(13, 20, 38, 0.4);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 24px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    user-select: none;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wizard-choice-card input[type="radio"],
.wizard-choice-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.wizard-choice-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
}

.wizard-choice-card.selected {
    background: rgba(37, 99, 235, 0.18);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
    animation: selectionPulse 2s infinite alternate;
}

@keyframes selectionPulse {
    0% {
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
    }
    100% {
        box-shadow: 0 0 25px rgba(96, 165, 250, 0.4);
    }
}

.wizard-choice-card.selected::after {
    content: '✓';
    position: absolute;
    top: 14px;
    right: 18px;
    color: #ffffff;
    background: var(--primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--primary-glow);
}

.wizard-choice-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.wizard-choice-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wizard-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.btn-wizard-prev {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-wizard-prev:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-wizard-next {
    background: var(--primary);
    border: none;
    color: white;
    padding: 12px 36px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-wizard-next:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .wizard-container {
        padding: 30px 20px;
    }
    .wizard-step-title {
        font-size: 1.25rem;
    }
    .wizard-grid-choices {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Interactive Timeline Sektion
   ========================================================================== */
.timeline-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
}

/* Horizontale Verbindungslinie auf Desktop */
.timeline-grid::before {
    content: '';
    position: absolute;
    top: 42px; /* Auf Höhe der Mitte der Zahlen-Kreise */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, var(--primary) 50%, rgba(37, 99, 235, 0.1) 100%);
    z-index: 1;
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--glass-shadow);
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.timeline-step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 2px solid var(--primary);
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.timeline-card:hover .timeline-step-number {
    background: var(--primary);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: scale(1.1);
}

.timeline-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.timeline-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Responsivität Timeline (Mobil) */
@media (max-width: 1024px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .timeline-grid::before {
        top: 20px;
        bottom: 20px;
        left: 42px;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, var(--primary) 50%, rgba(37, 99, 235, 0.1) 100%);
    }
    
    .timeline-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        align-items: flex-start;
        gap: 20px;
    }
    
    .timeline-step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .timeline-card-content {
        flex-grow: 1;
    }
}

/* ==========================================================================
   Bewerbungs-FAQ Sektion
   ========================================================================== */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.faq-item[open] {
    border-color: var(--accent);
    background: rgba(13, 20, 38, 0.85);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

/* Eigener Plus-Minus-Indikator */
.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Horizontale Linie */
.faq-icon::before {
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
}

/* Vertikale Linie */
.faq-icon::after {
    top: 0;
    left: 8px;
    width: 2px;
    height: 18px;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background-color: #60a5fa;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Schwebendes WhatsApp-Widget
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.whatsapp-widget-button {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
}

.whatsapp-widget-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-widget-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-widget-tooltip {
    pointer-events: auto;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-card-border);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--glass-shadow);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-widget:hover .whatsapp-widget-tooltip,
.whatsapp-widget.show-tooltip .whatsapp-widget-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-tooltip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #25d366;
    display: inline-block;
    animation: dotPulse 1.5s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes dotPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-widget-button {
        width: 54px;
        height: 54px;
    }
    .whatsapp-widget-button svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-widget-tooltip {
        display: none; /* Auf Mobilgeräten standardmäßig ausblenden */
    }
}