.ort-kontakt-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-weight: 600;
    color: var(--accent-blue, #003e69);
    text-decoration: underline;
    cursor: pointer;
}

.ort-kontakt-trigger:hover {
    opacity: 0.85;
}

.anfragen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anfragen-modal.show {
    display: flex;
    opacity: 1;
}

.anfragen-modal-content {
    background-color: var(--text-white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: ort-modal-slide-in 0.3s ease;
}

@keyframes ort-modal-slide-in {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.anfragen-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.anfragen-modal-close:hover {
    background-color: #f0f0f0;
    color: var(--text-black);
}

.anfragen-modal-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.anfragen-modal-subtitle {
    margin-bottom: 1.5rem;
    color: #666;
}

.anfragen-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.anfragen-option-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.anfragen-whatsapp {
    background-color: #25D366;
    color: white;
}

.anfragen-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.anfragen-email {
    background-color: var(--accent-blue);
    color: white;
}

.anfragen-email:hover {
    background-color: rgba(0, 62, 105, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 62, 105, 0.4);
}

.anfragen-telefon {
    background-color: var(--text-white);
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.anfragen-telefon:hover {
    background-color: rgba(248, 246, 242, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 62, 105, 0.4);
}

.anfragen-option-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.anfragen-option-button span {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .anfragen-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .anfragen-option-button {
        padding: 0.875rem 1.25rem;
    }
}
