/* Kontakt page styles */

.contact-hero {
    max-width: 980px;
    margin: 2rem auto 0;
    text-align: left;
    padding: 2.4rem 2.2rem;
}

.contact-hero .hero-text {
    max-width: 760px;
}

.hero-chatbot {
    margin-top: 1.15rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.3rem;
}

.contact-card {
    padding: 1.7rem;
}

.contact-card h2 {
    margin-bottom: 0.4rem;
}

.contact-help {
    margin-top: 0;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
}

.contact-message {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    min-height: 1.2rem;
    color: var(--text-muted);
}

.contact-divider {
    margin: 1.25rem 0 1rem;
    height: 1px;
    background: rgba(255,255,255,0.12);
}

.chatbot-wrap h3 {
    margin-bottom: 0.25rem;
}

.chatbot-messages {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.15rem;
}

.chatbot-bubble {
    padding: 0.62rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.chatbot-bubble.user {
    align-self: flex-end;
    max-width: 85%;
    background: rgba(0,201,122,0.18);
    border: 1px solid rgba(0,201,122,0.34);
    color: var(--text-main);
}

.chatbot-bubble.bot {
    align-self: flex-start;
    max-width: 92%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-soft);
}

.chatbot-quick {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chatbot-chip {
    font-size: 0.8rem;
    padding: 0.35rem 0.55rem;
    line-height: 1.3;
}

.chatbot-form {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
}

.chatbot-form .btn {
    min-height: 44px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.contact-list {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: var(--text-soft);
}

.contact-map-title {
    margin-top: 1.4rem;
}

.contact-map {
    margin-top: 0.8rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--glass-border-strong);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-hero {
        text-align: center;
        padding: 1.4rem 1rem;
    }

    .hero-chatbot {
        text-align: left;
        margin-top: 1rem;
        padding: 0.85rem;
    }

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

    .contact-card {
        padding: 1.3rem;
    }

    .chatbot-form {
        grid-template-columns: 1fr;
    }

    .chatbot-form .btn,
    .contact-form .btn {
        width: 100%;
    }

    .contact-map {
        height: 250px;
    }
}
